Fix otNetifAddress declaration to work between C & C++ (#1037)

* Fix otNetifAddress declaration to work between C & C++
This commit is contained in:
Nick Banks
2016-12-05 16:23:30 -08:00
committed by Jonathan Hui
parent c53c0e4a80
commit 55e17533b9
8 changed files with 82 additions and 4 deletions
+4
View File
@@ -80,6 +80,8 @@ void test_packed1();
void test_packed2();
void test_packed_union();
void test_packed_enum();
void test_addr_sizes();
void test_addr_bitfield();
// test_fuzz.cpp
void TestFuzz(uint32_t aSeconds);
@@ -155,6 +157,8 @@ namespace Thread
TEST_METHOD(test_packed2) { ::test_packed2(); }
TEST_METHOD(test_packed_union) { ::test_packed_union(); }
TEST_METHOD(test_packed_enum) { ::test_packed_enum(); }
TEST_METHOD(test_addr_sizes) { ::test_addr_sizes(); }
TEST_METHOD(test_addr_bitfield) { ::test_addr_bitfield(); }
// test_settings.cpp
TEST_METHOD(RunTestFuzz) { ::TestFuzz(30); }