Fix Assimp compile warning

This commit is contained in:
rdb 2015-11-28 15:51:51 +01:00
parent 2abe2df1b4
commit 946c1e986d

View File

@ -29,8 +29,12 @@ public:
static void set_default();
protected:
INLINE bool attachStream(Assimp::LogStream*, unsigned int) {};
INLINE bool detatchStream(Assimp::LogStream*, unsigned int) {};
INLINE bool attachStream(Assimp::LogStream*, unsigned int) {
return false;
};
INLINE bool detatchStream(Assimp::LogStream*, unsigned int) {
return false;
};
void OnDebug(const char *message);
void OnError(const char *message);