svn:keywords property set
[senf.git] / Utils / IteratorTraits.test.cc
index f5aa2cc..850d3e0 100644 (file)
@@ -38,6 +38,7 @@
 BOOST_AUTO_UNIT_TEST(iteratorTraits)
 {
     BOOST_CHECK_EQUAL( senf::contiguous_storage_iterator<int*>::value, true );
+    BOOST_CHECK_EQUAL( senf::contiguous_storage_iterator<void>::value, false );
 #ifdef __GNUG__
     BOOST_CHECK_EQUAL( senf::contiguous_storage_iterator<std::vector<int>::iterator>::value, true);
     BOOST_CHECK_EQUAL( senf::contiguous_storage_iterator<std::string::iterator>::value, true);
@@ -55,4 +56,5 @@ BOOST_AUTO_UNIT_TEST(iteratorTraits)
 // indent-tabs-mode: nil
 // ispell-local-dictionary: "american"
 // compile-command: "scons -u test"
+// comment-column: 40
 // End: