2
0
mirror of https://github.com/boostorg/wave.git synced 2026-02-14 01:12:09 +00:00

Fixed the macro tracing information to contain the column numbers of the macro definitions as well (the format used is the same as for error messages)..

[SVN r33420]
This commit is contained in:
Hartmut Kaiser
2006-03-21 15:31:42 +00:00
parent 9605f7220c
commit 24fe8e51fe
3 changed files with 11 additions and 16 deletions

View File

@@ -131,7 +131,7 @@ template <typename StringT>
inline std::ostream &
operator<< (std::ostream &o, file_position<StringT> const &pos)
{
o << pos.get_file() << "(" << pos.get_line() << ")";
o << pos.get_file() << ":" << pos.get_line() << ":" << pos.get_column();
return o;
}