mirror of
https://github.com/mfontanini/libtins
synced 2026-01-28 04:34:27 +01:00
Fixed lots of warnings in test cases, due to narrowing conversions.
This commit is contained in:
@@ -17,9 +17,15 @@ public:
|
||||
//void test_equals(const IP &ip1, const IP &ip2);
|
||||
};
|
||||
|
||||
const uint8_t LLCTest::from_buffer_info[] = {'\xfe', '\x48', '\x3c', '\x3b'};
|
||||
const uint8_t LLCTest::from_buffer_super[] = {'\x4b', '\x19', '\x05', '\x3a'};
|
||||
const uint8_t LLCTest::from_buffer_unnumbered[] = {'\xaa', '\x17', '\xcf'};
|
||||
const uint8_t LLCTest::from_buffer_info[] = {
|
||||
254, 72, 60, 59
|
||||
};
|
||||
const uint8_t LLCTest::from_buffer_super[] = {
|
||||
75, 25, 5, 58
|
||||
};
|
||||
const uint8_t LLCTest::from_buffer_unnumbered[] = {
|
||||
170, 23, 207
|
||||
};
|
||||
|
||||
|
||||
TEST_F(LLCTest, DefaultConstructor) {
|
||||
|
||||
Reference in New Issue
Block a user