From: Christoph Egger Date: Wed, 11 Mar 2015 13:33:20 +0000 (+0100) Subject: Cleanup X-Git-Tag: v0.1~49 X-Git-Url: https://git.siccegge.de//index.cgi?p=frida%2Ffrida.git;a=commitdiff_plain;h=55eb2a804c19c35a9006a2241a0feefe219bf21e Cleanup --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 9d27f61..60cbd60 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,7 +17,6 @@ pkg_check_modules(GUILE REQUIRED guile-2.0) FIND_PACKAGE(SWIG REQUIRED) INCLUDE(${SWIG_USE_FILE}) -#add_compile_options(${LOG4CXX_CFLAGS}) add_definitions(${LOG4CXX_CFLAGS}) add_definitions(${GUILE_CFLAGS}) diff --git a/src/core/InformationManager.hxx b/src/core/InformationManager.hxx index f3f3406..86e4d8c 100644 --- a/src/core/InformationManager.hxx +++ b/src/core/InformationManager.hxx @@ -29,7 +29,7 @@ public: void signal_new_function(Function* f); void signal_new_dyn_symbol(const std::string& f) - { new_dyn_symbol_signal(f); } + { new_dyn_symbol_signal(f); } boost::signals2::connection connect_new_function_signal(std::function f) @@ -86,6 +86,7 @@ public: void deleteFunction(Function* f); void deleteBasicBlock(BasicBlock* b); void deleteComment(Comment* c); + private: boost::signals2::signal reset_signal; boost::signals2::signal new_function_signal;