From db6b32b90be026b09b442004e8db72410fd3b2a3 Mon Sep 17 00:00:00 2001 From: Peter Thorson Date: Sun, 6 Jan 2013 09:15:55 -0600 Subject: [PATCH] const correctness --- websocketpp/connection.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/websocketpp/connection.hpp b/websocketpp/connection.hpp index 09c1627f61..5c40653cb6 100644 --- a/websocketpp/connection.hpp +++ b/websocketpp/connection.hpp @@ -207,7 +207,7 @@ public: * * @return A handle to the connection */ - connection_hdl get_handle() { + connection_hdl get_handle() const { return m_connection_hdl; }