This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- How to use: | |
-- 0. Get assimp from https://github.com/assimp/assimp | |
-- 1. Place this file next to the cloned assimp repository like this: | |
-- | |
-- assimp.lua | |
-- assimp/ | |
-- | |
-- 2. Set up configuration headers | |
-- | |
-- 2.1 Create a folder for configuration headers, I usually name it _config_headers/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Self assignment: May accidentally destroy the shared_block in the assignment | |
shared<X> a = make_shared<X>(); | |
a = a; | |
- Weak pointer in child: Depending on the implementation, could delete the control block twice. | |
struct Test { | |
weak<Test> self; | |
}; | |
shared<Test> t = make_shared<Test>(); | |
t->self = t; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# initialization file (not found) |