mirror of
https://github.com/espressif/openthread.git
synced 2026-08-03 17:37:46 +00:00
Change top-level namespace from 'Thread' to 'ot'. (#1664)
This commit is contained in:
@@ -94,11 +94,11 @@ void test_packed_union()
|
||||
|
||||
void test_packed_enum()
|
||||
{
|
||||
Thread::Neighbor neighbor;
|
||||
neighbor.SetState(Thread::Neighbor::kStateValid);
|
||||
ot::Neighbor neighbor;
|
||||
neighbor.SetState(ot::Neighbor::kStateValid);
|
||||
|
||||
// Make sure that when we read the 3 bit field it is read as unsigned, so it return '4'
|
||||
VerifyOrQuit(neighbor.GetState() == Thread::Neighbor::kStateValid, "Toolchain::OT_TOOL_PACKED failed 4\n");
|
||||
VerifyOrQuit(neighbor.GetState() == ot::Neighbor::kStateValid, "Toolchain::OT_TOOL_PACKED failed 4\n");
|
||||
}
|
||||
|
||||
void test_addr_sizes()
|
||||
|
||||
Reference in New Issue
Block a user