# bugfix boost workaround, shared_ptr didn't offer a const operator*

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@1021 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
This commit is contained in:
aramis_acg
2011-05-31 17:35:17 +00:00
parent a4e371af4b
commit 326b11b72f

View File

@@ -147,7 +147,7 @@ public:
}
// pointer access
inline operator T*() {
inline operator T*() const {
return ptr;
}