# 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
pull/1/head
aramis_acg 2011-05-31 17:35:17 +00:00
parent a4e371af4b
commit 326b11b72f
1 changed files with 1 additions and 1 deletions

View File

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