fix gcc warning: can't pass non-POD through ...

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@718 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
pull/1/head
aramis_acg 2010-05-10 10:39:43 +00:00
parent 32bfa9ac21
commit 35f6851dba
1 changed files with 3 additions and 2 deletions

View File

@ -595,8 +595,9 @@ template <> class ObjectCache<boost::shared_array>
public:
ObjectCache(const FileDatabase&) {}
void get(...) {}
void set(...) {}
template <typename T> void get(const Structure&, boost::shared_array<T>&t, const Pointer&) {}
template <typename T> void set(const Structure&, const boost::shared_array<T>&, const Pointer&) {}
};
#ifdef _MSC_VER