avoid warning in optimized builds

This commit is contained in:
Mathieu Lacage
2007-02-13 10:23:10 +01:00
parent cb102a5d0b
commit 310f67b835

View File

@@ -16,7 +16,8 @@ int main (int argc, int argv)
NS3_DEBUG ("other debug output");
int a = 0;
int a;
a = 0;
NS3_ASSERT (a == 0);
NS3_ASSERT_MSG (a == 0, "my msg");