Browse Source

change typedef to using according to preferred coding style

cl-refactor
Lu Guanqun 10 years ago
parent
commit
cf74b2a875
  1. 2
      libevmjit/ExecutionEngine.cpp

2
libevmjit/ExecutionEngine.cpp

@ -29,7 +29,7 @@ namespace jit
namespace
{
typedef ReturnCode(*EntryFuncPtr)(Runtime*);
using EntryFuncPtr = ReturnCode(*)(Runtime*);
ReturnCode runEntryFunc(EntryFuncPtr _mainFunc, Runtime* _runtime)
{

Loading…
Cancel
Save