Fix tick style on %p formats.

This commit is contained in:
Wilson Snyder
2020-10-16 19:26:04 -04:00
parent 44f938e507
commit 829db3eefa
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -148,7 +148,7 @@ class CUseVisitor : public AstNVisitor {
funcp->isStatic(false);
funcp->protect(false);
AstNode* exprp = new AstCMath(nodep->fileline(),
"std::string(\"`{\") + to_string_middle() + \"}\"", 0);
"std::string(\"'{\") + to_string_middle() + \"}\"", 0);
exprp->dtypeSetString();
funcp->addStmtsp(new AstCReturn(nodep->fileline(), exprp));
nodep->addStmtp(funcp);