| 21 | } |
| 22 | |
| 23 | std::string DebugPrint(SrcPoint const & srcPoint) |
| 24 | { |
| 25 | std::ostringstream out; |
| 26 | if (srcPoint.Line() > 0) |
| 27 | out << srcPoint.FileName() << ":" << srcPoint.Line() << " " << srcPoint.Function() << srcPoint.Postfix() << ": "; |
| 28 | return out.str(); |
| 29 | } |
| 30 | } // namespace base |