]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/test/impl/results_reporter.ipp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / test / impl / results_reporter.ipp
index 87c1172e12781a9b34b4f7cebb8c7229ac7230c4..90dc80ab51b017605f5a4dbf162e1547bce1ca37 100644 (file)
@@ -9,7 +9,7 @@
 //
 //  Version     : $Revision$
 //
-//  Description : result reporting facilties
+//  Description : result reporting facilities
 // ***************************************************************************
 
 #ifndef BOOST_TEST_RESULTS_REPORTER_IPP_020105GER
@@ -59,12 +59,12 @@ struct results_reporter_impl : test_tree_visitor {
     {}
 
     // test tree visitor interface implementation
-    void    visit( test_case const& tc )
+    void    visit( test_case const& tc ) BOOST_OVERRIDE
     {
         m_formatter->test_unit_report_start( tc, *m_stream );
         m_formatter->test_unit_report_finish( tc, *m_stream );
     }
-    bool    test_suite_start( test_suite const& ts )
+    bool    test_suite_start( test_suite const& ts ) BOOST_OVERRIDE
     {
         m_formatter->test_unit_report_start( ts, *m_stream );
 
@@ -74,7 +74,7 @@ struct results_reporter_impl : test_tree_visitor {
         m_formatter->test_unit_report_finish( ts, *m_stream );
         return false;
     }
-    void    test_suite_finish( test_suite const& ts )
+    void    test_suite_finish( test_suite const& ts ) BOOST_OVERRIDE
     {
         m_formatter->test_unit_report_finish( ts, *m_stream );
     }