Browse Source

Fixed missing void.

Mark Sibly 9 years ago
parent
commit
4725f2ca8b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules/monkey/native/bbobject.h

+ 1 - 1
modules/monkey/native/bbobject.h

@@ -50,7 +50,7 @@ template<class T,class...A> T *bbGCNew( A...a ){
 	return p;
 }
 
-inline bbDBAssertSelf( void *p ){
+inline void bbDBAssertSelf( void *p ){
 	bbDebugAssert( p,"'Self' is null" );
 }