You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Initialization in a constructor is out of order, resulting in a warning (ArchLinux x86_64, gcc version 4.8.2 20131219 (prerelease))
The warning is:
In file included from tools.cpp:4:
serial.h: In copy constructor 'serial::IOException::IOException(const serial::IOException&)':
serial.h:647:15: warning: 'serial::IOException::e_what_' will be initialized after [-Wreorder]
std::string e_what_;
^
serial.h:646:7: warning: 'int serial::IOException::line_' [-Wreorder]
int line_;
^
serial.h:671:3: warning: when initialized here [-Wreorder]
IOException (const IOException& other) : e_what_(other.e_what_), line_(other.line_), errno_(other.errno_) {}
The text was updated successfully, but these errors were encountered:
Initialization in a constructor is out of order, resulting in a warning (ArchLinux x86_64, gcc version 4.8.2 20131219 (prerelease))
The warning is:
The text was updated successfully, but these errors were encountered: