From feb667cc9756e9c3fc1aebc7c19e37350d9c2c26 Mon Sep 17 00:00:00 2001 From: Nicolas Bigaouette Date: Fri, 27 Dec 2013 16:31:24 -0500 Subject: [PATCH] Fix compilation warning See issue #53 --- include/serial/serial.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/serial/serial.h b/include/serial/serial.h index bf664c9..2a915d9 100644 --- a/include/serial/serial.h +++ b/include/serial/serial.h @@ -668,7 +668,7 @@ public: e_what_ = ss.str(); } virtual ~IOException() throw() {} - IOException (const IOException& other) : e_what_(other.e_what_), line_(other.line_), errno_(other.errno_) {} + IOException (const IOException& other) : line_(other.line_), e_what_(other.e_what_), errno_(other.errno_) {} int getErrorNumber () { return errno_; }