diff --git a/test/sequence/vector_n.cpp b/test/sequence/vector_n.cpp index 49550b80..4c02a2a3 100644 --- a/test/sequence/vector_n.cpp +++ b/test/sequence/vector_n.cpp @@ -18,6 +18,7 @@ #include #include +#include #include #include @@ -36,6 +37,7 @@ main() vector0 vec; (void) vec; cout << "(): " << sizeof(vec) << endl; + cout << (boost::is_empty::value ? "is empty" : "is not empty") << endl; } {