From 399318f8663cb6c53471c8b7be03d230a13c7a3b Mon Sep 17 00:00:00 2001 From: Alex Hultman Date: Sun, 10 Feb 2019 02:11:11 +0100 Subject: [PATCH] Disable TopicTree for now --- misc/15.pro | 3 ++- src/TopicTree.h | 5 ++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/misc/15.pro b/misc/15.pro index 86073b0..ce137b2 100644 --- a/misc/15.pro +++ b/misc/15.pro @@ -32,7 +32,8 @@ HEADERS += \ ../src/WebSocketContext.h \ ../src/WebSocketContextData.h \ ../src/WebSocketExtensions.h \ - ../src/PerMessageDeflate.h + ../src/PerMessageDeflate.h \ + ../src/TopicTree.h INCLUDEPATH += ../uSockets/src ../src QMAKE_CXXFLAGS += -Wno-unused-variable -Wno-unused-parameter -Wno-unused-but-set-parameter -fsanitize=address diff --git a/src/TopicTree.h b/src/TopicTree.h index 20bd242..3b9a271 100644 --- a/src/TopicTree.h +++ b/src/TopicTree.h @@ -78,6 +78,9 @@ public: } TopicTree() { + /* Disable this for now */ + return; + /* Dynamically hook us up with the Loop post handler */ Loop::defaultLoop()->addPostHandler([this](Loop *loop) { @@ -192,4 +195,4 @@ public: }; } -#endif // TOPICTREE_H \ No newline at end of file +#endif // TOPICTREE_H