Add a missing operator to ManagedType.

This commit is contained in:
Jonathan Protzenko 2015-08-18 17:49:08 -07:00
parent 6e65c33e88
commit c4656ca855
1 changed files with 3 additions and 0 deletions

View File

@ -80,6 +80,9 @@ public:
*/
int getReferences();
T* operator->() {
return object;
}
};
/**