Change top-level namespace from 'Thread' to 'ot'. (#1664)

This commit is contained in:
Jonathan Hui
2017-04-27 22:29:05 -07:00
committed by GitHub
parent 8bf14cfbbd
commit 1eabda6a08
276 changed files with 659 additions and 660 deletions
+3 -3
View File
@@ -34,7 +34,7 @@
#include <common/message.hpp>
#include <ncp/ncp_buffer.hpp>
namespace Thread {
namespace ot {
// This module implements unit-test for NcpFrameBuffer class.
@@ -461,12 +461,12 @@ void TestNcpFrameBuffer(void)
printf("\n -- PASS\n");
}
} // namespace Thread
} // namespace ot
#ifdef ENABLE_TEST_MAIN
int main(void)
{
Thread::TestNcpFrameBuffer();
ot::TestNcpFrameBuffer();
printf("\nAll tests passed.\n");
return 0;
}