diff options
Diffstat (limited to 'AST/Type.cpp')
-rw-r--r-- | AST/Type.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AST/Type.cpp b/AST/Type.cpp index 2ef457e453..afdd3cc1f7 100644 --- a/AST/Type.cpp +++ b/AST/Type.cpp @@ -658,7 +658,7 @@ void TypeOfExpr::getAsStringInternal(std::string &InnerString) const { InnerString = ' ' + InnerString; std::ostringstream s; getUnderlyingExpr()->print(s); - InnerString = "typeof(" + s.str() + ") " + InnerString; + InnerString = "typeof(" + s.str() + ")" + InnerString; } void TypeOfType::getAsStringInternal(std::string &InnerString) const { |