From cf37816602a79ba88e54d69370c0f19148d62ee4 Mon Sep 17 00:00:00 2001 From: Benjamin Sergeant Date: Wed, 24 Apr 2019 09:45:03 -0700 Subject: [PATCH] compiler warning police --- ws/snake/IXSnakeProtocol.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ws/snake/IXSnakeProtocol.cpp b/ws/snake/IXSnakeProtocol.cpp index 033b5119..138612e3 100644 --- a/ws/snake/IXSnakeProtocol.cpp +++ b/ws/snake/IXSnakeProtocol.cpp @@ -122,7 +122,6 @@ namespace snake void handlePublish( std::shared_ptr state, std::shared_ptr ws, - const AppConfig& appConfig, const nlohmann::json& pdu) { std::vector channels; @@ -293,7 +292,7 @@ namespace snake } else if (action == "rtm/publish") { - handlePublish(state, ws, appConfig, pdu); + handlePublish(state, ws, pdu); } else if (action == "rtm/subscribe") {