forked from compAIR/libcreate
Add compiler flags '-Wall -Wextra -Wpedantic'
Fix warnings as a result. Signed-off-by: Jacob Perron <jacobmperron@gmail.com>
This commit is contained in:
parent
c1c0ce6ea9
commit
dce7336bbe
7 changed files with 25 additions and 30 deletions
|
@ -6,11 +6,11 @@
|
|||
namespace create {
|
||||
|
||||
Serial::Serial(boost::shared_ptr<Data> d) :
|
||||
data(d),
|
||||
port(io),
|
||||
signals(io, SIGINT, SIGTERM),
|
||||
isReading(false),
|
||||
port(io),
|
||||
dataReady(false),
|
||||
isReading(false),
|
||||
data(d),
|
||||
corruptPackets(0),
|
||||
totalPackets(0) {
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue