Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/Simple-WebSocket-Server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreidheim <eidheim@gmail.com>2015-09-30 09:56:01 +0300
committereidheim <eidheim@gmail.com>2015-09-30 09:56:01 +0300
commit0bfc3522c8c439a22b1d90bf21b2dd93ff660dfe (patch)
tree9c7f4237662021b303f81453b7be1052b51e2448 /wss_examples.cpp
parent47a7acc3fca8a9720d4d2e1bda750632f0268e20 (diff)
Changed to boost::regex due to reported problems with g++-4.9 on Red Hat. Should now also compile with g++-4.8.
Diffstat (limited to 'wss_examples.cpp')
-rw-r--r--wss_examples.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/wss_examples.cpp b/wss_examples.cpp
index d03574e..2b043c2 100644
--- a/wss_examples.cpp
+++ b/wss_examples.cpp
@@ -38,7 +38,7 @@ int main() {
cout << "Server: Error sending message. " <<
//See http://www.boost.org/doc/libs/1_55_0/doc/html/boost_asio/reference.html, Error Codes for error code meanings
"Error: " << ec << ", error message: " << ec.message() << endl;
- }
+ }
});
};