diff --git a/tests/A64/unicorn_emu/unicorn_load.cpp b/tests/A64/unicorn_emu/unicorn_load.cpp index 88e396de..3a28dac5 100644 --- a/tests/A64/unicorn_emu/unicorn_load.cpp +++ b/tests/A64/unicorn_emu/unicorn_load.cpp @@ -9,8 +9,10 @@ #include #include +#include "common/assert.h" + static struct LoadDll { -private: +public: LoadDll() { ASSERT(uc_dyn_load(NULL, 0)); } @@ -19,4 +21,4 @@ private: } static LoadDll g_load_dll; } load_dll; -#endif \ No newline at end of file +#endif