diff options
Diffstat (limited to 'src/mem/slicc/ast/LiteralExprAST.py')
-rw-r--r-- | src/mem/slicc/ast/LiteralExprAST.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem/slicc/ast/LiteralExprAST.py b/src/mem/slicc/ast/LiteralExprAST.py index 773e8f35c..6d259c17f 100644 --- a/src/mem/slicc/ast/LiteralExprAST.py +++ b/src/mem/slicc/ast/LiteralExprAST.py @@ -39,7 +39,7 @@ class LiteralExprAST(ExprAST): def generate(self, code): fix = code.nofix() - if self.type == "string": + if self.type == "std::string": code('("${{self.literal}}")') elif self.type == "bool": code('(${{str(self.literal).lower()}})') |