1
0
mirror of https://github.com/wjwwood/serial.git synced 2026-01-23 04:04:54 +08:00

Merge pull request #54 from nbigaouette/master

Fix compilation warning
This commit is contained in:
William Woodall 2013-12-27 13:38:58 -08:00
commit b1f25e884a

View File

@ -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_; }