Ticket #5374: patch
File patch, 1.5 KB (added by , 11 years ago) |
---|
-
impl/compiler_log_formatter.ipp
176 176 print_prefix( output, entry_data.m_file_name, entry_data.m_line_num ); 177 177 if( runtime_config::color_output() ) 178 178 output << setcolor( term_attr::BRIGHT, term_color::YELLOW ); 179 output << "warning in \"" << test_phase_identifier() << "\": ";179 output << "warning: in \"" << test_phase_identifier() << "\": "; 180 180 break; 181 181 case BOOST_UTL_ET_ERROR: 182 182 print_prefix( output, entry_data.m_file_name, entry_data.m_line_num ); 183 183 if( runtime_config::color_output() ) 184 184 output << setcolor( term_attr::BRIGHT, term_color::RED ); 185 output << "error in \"" << test_phase_identifier() << "\": ";185 output << "error: in \"" << test_phase_identifier() << "\": "; 186 186 break; 187 187 case BOOST_UTL_ET_FATAL_ERROR: 188 188 print_prefix( output, entry_data.m_file_name, entry_data.m_line_num ); 189 189 if( runtime_config::color_output() ) 190 190 output << setcolor( term_attr::BLINK, term_color::RED ); 191 output << "fatal error in \"" << test_phase_identifier() << "\": ";191 output << "fatal error: in \"" << test_phase_identifier() << "\": "; 192 192 break; 193 193 } 194 194 }