]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/bimap/test/test_bimap_list_of.cpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / libs / bimap / test / test_bimap_list_of.cpp
index e01569a9934570fc97f7f4615c14613243d2ffb1..c15cbd16f8d1bcf0101c2dcd147d22455cf71404 100644 (file)
@@ -8,7 +8,7 @@
 
 //  VC++ 8.0 warns on usage of certain Standard Library and API functions that
 //  can be cause buffer overruns or other possible security issues if misused.
-//  See http://msdn.microsoft.com/msdnmag/issues/05/05/SafeCandC/default.aspx
+//  See https://web.archive.org/web/20071014014301/http://msdn.microsoft.com/msdnmag/issues/05/05/SafeCandC/default.aspx
 //  But the wording of the warning is misleading and unsettling, there are no
 //  portable alternative functions, and VC++ 8.0's own libraries use the
 //  functions in question. So turn off the warnings.
 
 #include <boost/config.hpp>
 
-// Boost.Test
-#include <boost/test/minimal.hpp>
+#include <boost/core/ignore_unused.hpp>
 
 #include <boost/bimap/list_of.hpp>
 
-int test_main( int, char* [] )
+int main()
 {
     typedef boost::bimaps::list_of<int>     set_type;
     typedef boost::bimaps::list_of_relation set_type_of_relation;
+    boost::ignore_unused<set_type>();
+    boost::ignore_unused<set_type_of_relation>();
 
     return 0;
 }