From a8b410e66c3c75809c8e9c01dd3e35c579f02347 Mon Sep 17 00:00:00 2001 From: Martin Sustrik Date: Sat, 8 Aug 2009 16:01:58 +0200 Subject: lockfree interaction patter for 3 theads implemented --- include/zmq.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include') diff --git a/include/zmq.hpp b/include/zmq.hpp index ccc234d..004706b 100644 --- a/include/zmq.hpp +++ b/include/zmq.hpp @@ -38,7 +38,7 @@ namespace zmq message_delimiter = 1 << ZMQ_DELIMITER }; - class no_memory : public exception + class no_memory : public std::exception { virtual const char *what () { @@ -46,7 +46,7 @@ namespace zmq } }; - class invalid_argument : public exception + class invalid_argument : public std::exception { virtual const char *what () { @@ -54,7 +54,7 @@ namespace zmq } }; - class too_many_threads : public exception + class too_many_threads : public std::exception { virtual const char *what () { @@ -62,7 +62,7 @@ namespace zmq } }; - class address_in_use : public exception + class address_in_use : public std::exception { virtual const char *what () { -- cgit v1.2.3