diff options
Diffstat (limited to 'buildrun.cxx')
-rw-r--r-- | buildrun.cxx | 33 |
1 files changed, 1 insertions, 32 deletions
diff --git a/buildrun.cxx b/buildrun.cxx index 969ba352..3673a9b0 100644 --- a/buildrun.cxx +++ b/buildrun.cxx @@ -9,6 +9,7 @@ #include "config.h" #include "buildrun.h" #include "session.h" +#include "util.h" #include <fstream> #include <sstream> @@ -28,38 +29,6 @@ extern "C" { using namespace std; -// return as quoted string, with at least '"' backslash-escaped -template <typename IN> inline string -lex_cast_qstring(IN const & in) -{ - stringstream ss; - string out, out2; - if (!(ss << in)) - throw runtime_error("bad lexical cast"); - out = ss.str(); - out2 += '"'; - for (unsigned i=0; i<out.length(); i++) - { - if (out[i] == '"') // XXX others? - out2 += '\\'; - out2 += out[i]; - } - out2 += '"'; - return out2; -} - - -template <typename T> -static string -stringify(T t) -{ - ostringstream s; - s << t; - return s.str (); -} - - - int compile_pass (systemtap_session& s) { |