diff options
author | Mark Wielaard <mjw@redhat.com> | 2009-07-10 17:58:01 +0200 |
---|---|---|
committer | Mark Wielaard <mjw@redhat.com> | 2009-07-10 17:59:37 +0200 |
commit | a704a23b6653df973d919516d4ebf4886a84824f (patch) | |
tree | 73832f722cae16a8121085aac9138f51c9e558b7 /parse.cxx | |
parent | 1e9ab8199dff90c1b6e7290f0f7b4eb424a9ff9f (diff) | |
download | systemtap-steved-a704a23b6653df973d919516d4ebf4886a84824f.tar.gz systemtap-steved-a704a23b6653df973d919516d4ebf4886a84824f.tar.xz systemtap-steved-a704a23b6653df973d919516d4ebf4886a84824f.zip |
Fix source_loc ostream operator << representation.
* parse.cxx (operator << (ostream&,const source_loc&)): Add loc.file->name.
Diffstat (limited to 'parse.cxx')
-rw-r--r-- | parse.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -91,7 +91,7 @@ tt2str(token_type tt) ostream& operator << (ostream& o, const source_loc& loc) { - o << loc.file << ":" + o << loc.file->name << ":" << loc.line << ":" << loc.column; |