From a54e6d1661602499c48150fa18b2c6a68f9884ae Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Mon, 18 Feb 2013 02:44:59 -0500 Subject: [PATCH] STMClient::still_connecting: Make const Found by cppcheck. Signed-off-by: Anders Kaseorg Closes #390. --- src/frontend/stmclient.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/stmclient.h b/src/frontend/stmclient.h index 0b79991..51150c6 100644 --- a/src/frontend/stmclient.h +++ b/src/frontend/stmclient.h @@ -68,7 +68,7 @@ private: void output_new_frame( void ); - bool still_connecting( void ) + bool still_connecting( void ) const { /* Initially, network == NULL */ return network && ( network->get_remote_state_num() == 0 );