Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Kestrel Collaboration
Kestrel Firmware
serial
Commits
ef8265a5
Commit
ef8265a5
authored
12 years ago
by
William Woodall
Browse files
Options
Download
Email Patches
Plain Diff
A small change to quiet warnings in linux
parent
7714615a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
src/serial.cc
src/serial.cc
+2
-3
No files found.
src/serial.cc
View file @
ef8265a5
...
...
@@ -60,10 +60,9 @@ private:
Serial
::
Serial
(
const
string
&
port
,
uint32_t
baudrate
,
Timeout
timeout
,
bytesize_t
bytesize
,
parity_t
parity
,
stopbits_t
stopbits
,
flowcontrol_t
flowcontrol
)
:
read_cache_
(
""
)
:
read_cache_
(
""
),
pimpl_
(
new
SerialImpl
(
port
,
baudrate
,
bytesize
,
parity
,
stopbits
,
flowcontrol
))
{
pimpl_
=
new
SerialImpl
(
port
,
baudrate
,
bytesize
,
parity
,
stopbits
,
flowcontrol
);
pimpl_
->
setTimeout
(
timeout
);
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment