summaryrefslogtreecommitdiffstats
path: root/elaborate.cxx
diff options
context:
space:
mode:
authorDave Brolley <brolley@redhat.com>2009-09-03 19:53:24 -0400
committerDave Brolley <brolley@redhat.com>2009-09-03 19:53:24 -0400
commita5d268f35032292b8f85cc75a316930ed0b95aab (patch)
treedd78d073ab80624478e77eebab3c5e9767524faa /elaborate.cxx
parent8402bcf68e5321b3459cbbbd27d5111bb184922e (diff)
parentdf56da84549816b15a1f7aea3c9f71de2b2001ad (diff)
downloadsystemtap-steved-a5d268f35032292b8f85cc75a316930ed0b95aab.tar.gz
systemtap-steved-a5d268f35032292b8f85cc75a316930ed0b95aab.tar.xz
systemtap-steved-a5d268f35032292b8f85cc75a316930ed0b95aab.zip
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Diffstat (limited to 'elaborate.cxx')
-rw-r--r--elaborate.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/elaborate.cxx b/elaborate.cxx
index 17f335d0..c1a2e898 100644
--- a/elaborate.cxx
+++ b/elaborate.cxx
@@ -331,7 +331,7 @@ match_node::find_and_build (systemtap_session& s,
alternatives += string(" ") + i->first.str();
throw semantic_error (string("probe point truncated at position ") +
- lex_cast<string> (pos) +
+ lex_cast (pos) +
" (follow:" + alternatives + ")", loc->tok);
}
@@ -416,7 +416,7 @@ match_node::find_and_build (systemtap_session& s,
alternatives += string(" ") + i->first.str();
throw semantic_error(string("probe point mismatch at position ") +
- lex_cast<string> (pos) +
+ lex_cast (pos) +
" (alternatives:" + alternatives + ")" +
" didn't find any wildcard matches",
loc->tok);
@@ -433,7 +433,7 @@ match_node::find_and_build (systemtap_session& s,
alternatives += string(" ") + i->first.str();
throw semantic_error (string("probe point mismatch at position ") +
- lex_cast<string> (pos) +
+ lex_cast (pos) +
" (alternatives:" + alternatives + ")",
loc->tok);
}