From 3ee6d0a7bc6590e22e7dfa36eab4d1c7a8b7c8bc Mon Sep 17 00:00:00 2001 From: George Tasker Date: Tue, 18 Jan 2000 19:48:06 +0000 Subject: [PATCH] Removed a couple of debug lines git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5503 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/dynlib.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/common/dynlib.cpp b/src/common/dynlib.cpp index eca2040c2b..1ab0a358f8 100644 --- a/src/common/dynlib.cpp +++ b/src/common/dynlib.cpp @@ -45,11 +45,9 @@ # define wxDllOpen(lib) dlopen(lib.fn_str(), RTLD_NOW/*RTLD_LAZY*/) # define wxDllGetSymbol(handle, name) dlsym(handle, name.mb_str()) # define wxDllClose dlclose -aaa=1 #elif defined(HAVE_SHL_LOAD) # define wxDllOpen(lib) shl_load(lib.fn_str(), BIND_DEFERRED, 0) # define wxDllClose shl_unload -bbb=1 static inline void *wxDllGetSymbol(shl_t handle, const wxString& name) { void *sym;