]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/test/output/compiler_log_formatter.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / test / output / compiler_log_formatter.hpp
index cccf6151d889d3e47dfce29c53a64bdb7c43bf16..ba4e1649f5c46fab4501c0f639be7dce322d3a3f 100644 (file)
@@ -36,25 +36,25 @@ public:
     compiler_log_formatter() : m_color_output( false ), m_color_state() {}
 
     // Formatter interface
-    void    log_start( std::ostream&, counter_t test_cases_amount );
-    void    log_finish( std::ostream& );
-    void    log_build_info( std::ostream&, bool );
+    void    log_start( std::ostream&, counter_t test_cases_amount ) BOOST_OVERRIDE;
+    void    log_finish( std::ostream& ) BOOST_OVERRIDE;
+    void    log_build_info( std::ostream&, bool ) BOOST_OVERRIDE;
 
-    void    test_unit_start( std::ostream&, test_unit const& tu );
-    void    test_unit_finish( std::ostream&, test_unit const& tu, unsigned long elapsed );
-    void    test_unit_skipped( std::ostream&, test_unit const& tu, const_string reason );
+    void    test_unit_start( std::ostream&, test_unit const& tu ) BOOST_OVERRIDE;
+    void    test_unit_finish( std::ostream&, test_unit const& tu, unsigned long elapsed ) BOOST_OVERRIDE;
+    void    test_unit_skipped( std::ostream&, test_unit const& tu, const_string reason ) BOOST_OVERRIDE;
 
-    void    log_exception_start( std::ostream&, log_checkpoint_data const&, execution_exception const& ex );
-    void    log_exception_finish( std::ostream& );
+    void    log_exception_start( std::ostream&, log_checkpoint_data const&, execution_exception const& ex ) BOOST_OVERRIDE;
+    void    log_exception_finish( std::ostream& ) BOOST_OVERRIDE;
 
-    void    log_entry_start( std::ostream&, log_entry_data const&, log_entry_types let );
-    void    log_entry_value( std::ostream&, const_string value );
-    void    log_entry_value( std::ostream&, lazy_ostream const& value );
-    void    log_entry_finish( std::ostream& );
+    void    log_entry_start( std::ostream&, log_entry_data const&, log_entry_types let ) BOOST_OVERRIDE;
+    void    log_entry_value( std::ostream&, const_string value ) BOOST_OVERRIDE;
+    void    log_entry_value( std::ostream&, lazy_ostream const& value ) BOOST_OVERRIDE;
+    void    log_entry_finish( std::ostream& ) BOOST_OVERRIDE;
 
-    void    entry_context_start( std::ostream&, log_level );
-    void    log_entry_context( std::ostream&, log_level l, const_string );
-    void    entry_context_finish( std::ostream&, log_level l );
+    void    entry_context_start( std::ostream&, log_level ) BOOST_OVERRIDE;
+    void    log_entry_context( std::ostream&, log_level l, const_string ) BOOST_OVERRIDE;
+    void    entry_context_finish( std::ostream&, log_level l ) BOOST_OVERRIDE;
 
 protected:
     virtual void    print_prefix( std::ostream&, const_string file, std::size_t line );