diff options
author | Determinant <[email protected]> | 2020-02-18 19:26:55 -0500 |
---|---|---|
committer | Determinant <[email protected]> | 2020-02-18 19:26:55 -0500 |
commit | b9913ffd42258f17818c911d0f249aa1877af438 (patch) | |
tree | 44bee2503ea0a70077eb311a9cfc474ddd5e401a /test/test_msg.cpp | |
parent | c18cf986facd3c37b85bf20087bdf04537b555f2 (diff) |
get it almost working
Diffstat (limited to 'test/test_msg.cpp')
-rw-r--r-- | test/test_msg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_msg.cpp b/test/test_msg.cpp index ee13166..d21b7f3 100644 --- a/test/test_msg.cpp +++ b/test/test_msg.cpp @@ -64,7 +64,7 @@ struct MsgTest { const opcode_t MsgTest::opcode; int main() { - salticidae::MsgBase<opcode_t> msg(MsgTest(10)); + salticidae::MsgBase<opcode_t> msg(MsgTest(10), 0x0); printf("%s\n", std::string(msg).c_str()); MsgTest parse(msg.get_payload()); return 0; |