diff options
author | Determinant <[email protected]> | 2018-07-25 12:20:07 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2018-07-25 12:20:07 -0400 |
commit | 1b006d5164c605ef44652b4442309983bfc0d24a (patch) | |
tree | 096c6fe702888850d4bf08cf682579f73a2e9479 /test | |
parent | cd2fc3625d09f2f3f062648ff9963414e0140e2a (diff) |
...
Diffstat (limited to 'test')
-rw-r--r-- | test/test_msg.cpp | 2 | ||||
-rw-r--r-- | test/test_network.cpp | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/test/test_msg.cpp b/test/test_msg.cpp index e4f35fa..ee13166 100644 --- a/test/test_msg.cpp +++ b/test/test_msg.cpp @@ -61,6 +61,8 @@ struct MsgTest { } }; +const opcode_t MsgTest::opcode; + int main() { salticidae::MsgBase<opcode_t> msg(MsgTest(10)); printf("%s\n", std::string(msg).c_str()); diff --git a/test/test_network.cpp b/test/test_network.cpp index f84ead5..fd84c3b 100644 --- a/test/test_network.cpp +++ b/test/test_network.cpp @@ -71,6 +71,9 @@ struct MsgAck { MsgAck(DataStream &&s) {} }; +const opcode_t MsgHello::opcode; +const opcode_t MsgAck::opcode; + using MsgNetworkByteOp = MsgNetwork<opcode_t>; struct MyNet: public MsgNetworkByteOp { |