Skip to content

Commit

Permalink
WorkersPool moved to namespace LAppS
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Kraynyukhov committed Nov 10, 2018
1 parent 02c7117 commit 42f7ada
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,15 @@ void startWSServer()
LAppS::SServiceRegistry::getInstance()->clear();
#ifdef LAPPS_TLS_ENABLE
#ifdef STATS_ENABLE
itc::Singleton<WSWorkersPool<true,true>>::getInstance()->clear();
itc::Singleton<LAppS::WSWorkersPool<true,true>>::getInstance()->clear();
#else
itc::Singleton<WSWorkersPool<true,false>>::getInstance()->clear();
itc::Singleton<LAppS::WSWorkersPool<true,false>>::getInstance()->clear();
#endif
#else
#ifdef STATS_ENABLE
itc::Singleton<WSWorkersPool<false,true>>::getInstance()->clear();
itc::Singleton<LAppS::WSWorkersPool<false,true>>::getInstance()->clear();
#else
itc::Singleton<WSWorkersPool<false,false>>::getInstance()->clear();
itc::Singleton<LAppS::WSWorkersPool<false,false>>::getInstance()->clear();
#endif
#endif

Expand Down

0 comments on commit 42f7ada

Please # to comment.