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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user