We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c3de06 commit a92f7a4Copy full SHA for a92f7a4
cpp/ql/src/semmle/code/cpp/Type.qll
@@ -1308,7 +1308,7 @@ class SpecifiedType extends DerivedType {
1308
* only depends on the specifiers, not on the source program). This is intended
1309
* for debugging queries only and is an expensive operation.
1310
*/
1311
- string getSpecifierString() { result = concat(this.getASpecifier().getName(), " ") }
+ string getSpecifierString() { result = concat(this.getASpecifier().getName(), " ") + " " }
1312
1313
override string explain() {
1314
result = this.getSpecifierString() + "{" + this.getBaseType().explain() + "}"
0 commit comments