diff options
author | Dan Goodliffe <randomdan@akira.random.lan> | 2014-12-01 16:31:26 +0000 |
---|---|---|
committer | Dan Goodliffe <randomdan@akira.random.lan> | 2014-12-01 16:31:26 +0000 |
commit | 2eb77f58e6d39b355caf443fc87d0064df50fba5 (patch) | |
tree | 0b3a6b53ecc6ccc54123ed287dfeabe41ec30c28 | |
parent | Add null check when iterating model parts (diff) | |
download | project2-2eb77f58e6d39b355caf443fc87d0064df50fba5.tar.bz2 project2-2eb77f58e6d39b355caf443fc87d0064df50fba5.tar.xz project2-2eb77f58e6d39b355caf443fc87d0064df50fba5.zip |
Use char * for logging as it can represent null
-rw-r--r-- | project2/ice/slice2Common.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/project2/ice/slice2Common.cpp b/project2/ice/slice2Common.cpp index 0c7df54..1b5f9ee 100644 --- a/project2/ice/slice2Common.cpp +++ b/project2/ice/slice2Common.cpp @@ -35,7 +35,7 @@ Slice2Common::FunctionBegin(Slice::OperationPtr o) fprintf(code, "ice @ %%p\", \n"); fprintf(code, "\t\t\t\t\t\t\t\t__PRETTY_FUNCTION__, "); BOOST_FOREACH(const auto & p, o->parameters()) { - fprintf(code, "%s(ec).as<std::string>(), ", p->name().c_str()); + fprintf(code, "%s(ec).as<const char *>(), ", p->name().c_str()); } fprintf(code, "ice);\n"); |