diff options
author | MITSUNARI Shigeo <[email protected]> | 2012-05-03 15:39:57 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2012-05-03 15:39:57 +0900 |
commit | ded892de007a3e3381052c9fc181d9a81a3317c5 (patch) | |
tree | c8c7c1aeaea61eb331d9d3d9659464effc66dc34 /sample/toyvm.cpp | |
parent | 2ad3c232a07b0feb7ee545a1b58e57fbc7a25d02 (diff) | |
download | xbyak-ded892de007a3e3381052c9fc181d9a81a3317c5.tar.gz xbyak-ded892de007a3e3381052c9fc181d9a81a3317c5.zip |
remove warning for clang++
Diffstat (limited to 'sample/toyvm.cpp')
-rw-r--r-- | sample/toyvm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sample/toyvm.cpp b/sample/toyvm.cpp index a3d44c7..8516249 100644 --- a/sample/toyvm.cpp +++ b/sample/toyvm.cpp @@ -274,7 +274,7 @@ public: } void runByJIT() { - ((void (*)())getCode())(); + ((void (*)())(void*)getCode())(); } }; |