1
0
Fork 0

Update CoverityModel.cpp

This commit is contained in:
worktycho 2014-04-27 13:03:34 -07:00
parent e069948bef
commit a303adca8b
1 changed files with 15 additions and 3 deletions

View File

@ -1,5 +1,17 @@
void tolua_error (lua_State* L, const char* msg, tolua_Error* err)
{
__coverity_panic__();
extern "C" {
struct lua_State;
struct tolua_Error
{
int index;
int array;
const char* type;
};
void tolua_error (lua_State* L, const char* msg, tolua_Error* err)
{
__coverity_panic__();
}
}