浏览代码

Fixed missing void.

Mark Sibly 9 年之前
父节点
当前提交
4725f2ca8b
共有 1 个文件被更改,包括 1 次插入1 次删除
  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;
 	return p;
 }
 }
 
 
-inline bbDBAssertSelf( void *p ){
+inline void bbDBAssertSelf( void *p ){
 	bbDebugAssert( p,"'Self' is null" );
 	bbDebugAssert( p,"'Self' is null" );
 }
 }