Browse Source

# include <memory> and <typeinfo>, which were missing if compiled with the boost workaround enabled

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@1026 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
aramis_acg 14 years ago
parent
commit
2f4989a35d
1 changed files with 3 additions and 0 deletions
  1. 3 0
      code/STEPFile.h

+ 3 - 0
code/STEPFile.h

@@ -43,6 +43,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
 
 #include <boost/noncopyable.hpp>
 #include <boost/noncopyable.hpp>
 #include <bitset>
 #include <bitset>
+#include <memory>
+#include <typeinfo>
 
 
 //
 //
 #if _MSC_VER >= 1500 || (defined __GNUC___)
 #if _MSC_VER >= 1500 || (defined __GNUC___)
@@ -261,6 +263,7 @@ namespace STEP {
 				(*this) = o;
 				(*this) = o;
 			}
 			}
 
 
+
 		public:
 		public:
 
 
 			operator const T& () const {
 			operator const T& () const {