Skip to content
Snippets Groups Projects
Commit c3d8dfec authored by Grigoris Pavlakis's avatar Grigoris Pavlakis
Browse files

Break test print so that Vera++ does not complain about too long lines

parent 6ba14d92
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,8 @@ int main() {
uint16_t id = returnedPacket.readUint16();
uint32_t val = returnedPacket.readUint32();
std::cout << "Parameter ID: " << std::dec << id << std::endl << "Parameter value: " << std::dec << val << std::endl;
std::cout << "Parameter ID: " << std::dec << id << std::endl; //set
std::cout << "Parameter value: " << std::dec << val << std::endl;
return 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment