changeset 93:401161acfa60

Server: fix compilation on older GCC versions
author David Demelier <markand@malikania.fr>
date Thu, 08 Jun 2017 08:45:10 +0200
parents 4031eda60e11
children e354bca9bef9
files libclient/malikania/client/connection.cpp
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libclient/malikania/client/connection.cpp	Wed Jun 07 20:44:37 2017 +0200
+++ b/libclient/malikania/client/connection.cpp	Thu Jun 08 08:45:10 2017 +0200
@@ -59,7 +59,7 @@
                 if (code) {
                     client.handle_error(code);
                 } else {
-                    handshake(client);
+                    this->handshake(client);
                 }
             });
         }
@@ -76,7 +76,7 @@
         if (code) {
             client.handle_error(code);
         } else if (!output_.empty()) {
-            flush(client);
+            this->flush(client);
         }
     });
 }