diff --git a/test/conversion_test.cpp b/test/conversion_test.cpp index cf28d6a..8e901f8 100644 --- a/test/conversion_test.cpp +++ b/test/conversion_test.cpp @@ -313,7 +313,7 @@ int main() { container c; { - int x; + int x = 0; c.push_back(x); assert(c.construction_type() == Copied); c.insert(c.begin(), c.construction_type()); @@ -359,7 +359,7 @@ int main() { container c; { - int x; + int x = 0; c.push_back(x); assert(c.construction_type() == Copied); c.insert(c.begin(), c.construction_type());