remove warning for gcc 4.7

This commit is contained in:
MITSUNARI Shigeo 2012-05-10 16:06:05 +09:00
parent 0ed670f409
commit 17a9cd71be
6 changed files with 12 additions and 12 deletions

View file

@ -274,7 +274,7 @@ public:
}
void runByJIT()
{
((void (*)())(void*)getCode())();
((void (*)())(const void*)getCode())();
}
};