Index: boost/test/impl/compiler_log_formatter.ipp =================================================================== --- boost/test/impl/compiler_log_formatter.ipp (revision 48295) +++ boost/test/impl/compiler_log_formatter.ipp (working copy) @@ -186,7 +186,13 @@ void compiler_log_formatter::print_prefix( std::ostream& output, const_string file, std::size_t line ) { +#ifdef __APPLE_CC__ + // Xcode-compatible logging format, idea by Richard Dingwall at + // . + output << file << ':' << line << ": "; +#else output << file << '(' << line << "): "; +#endif } //____________________________________________________________________________//