diff options
Diffstat (limited to 'cpp/src/FreezeScript/Print.cpp')
-rw-r--r-- | cpp/src/FreezeScript/Print.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/FreezeScript/Print.cpp b/cpp/src/FreezeScript/Print.cpp index 6c713046c79..c4ea1bd8007 100644 --- a/cpp/src/FreezeScript/Print.cpp +++ b/cpp/src/FreezeScript/Print.cpp @@ -97,7 +97,7 @@ void FreezeScript::PrintVisitor::visitProxy(const ProxyDataPtr& data) { string str = data->toString(); - _out << typeToString(data->getType()) << '(' << (str.empty() ? "nil" : str) << ')'; + _out << typeToString(data->getType()) << '(' << (str.empty() ? string("nil") : str) << ')'; } void |