diff options
Diffstat (limited to 'indra/llui/llcallbackmap.h')
-rw-r--r-- | indra/llui/llcallbackmap.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/indra/llui/llcallbackmap.h b/indra/llui/llcallbackmap.h index 60c4fc6b6d..97b1e2fc50 100644 --- a/indra/llui/llcallbackmap.h +++ b/indra/llui/llcallbackmap.h @@ -35,13 +35,12 @@ #include <map> #include <string> -#include <boost/function.hpp> class LLCallbackMap { public: // callback definition. - typedef boost::function<void* (void* data)> callback_t; + typedef void* (*callback_t)(void* data); typedef std::map<std::string, LLCallbackMap> map_t; typedef map_t::iterator map_iter_t; |