From bc7d10ec9492f34dbf9664effc50242e53473487 Mon Sep 17 00:00:00 2001 From: Joel de Guzman Date: Sun, 14 Jan 2007 03:22:54 +0000 Subject: [PATCH] added is_empty test [SVN r36725] --- test/sequence/vector_n.cpp | 2 ++ 1 file changed, 2 insertions(+) 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; } {