C++: Autoformat.

This commit is contained in:
Cornelius Riemenschneider
2020-11-18 12:13:46 +01:00
parent b670522a9f
commit 959b8f39d2

View File

@@ -1305,12 +1305,12 @@ class SpecifiedType extends DerivedType {
/**
* INTERNAL: Do not use.
*
*
* Gets all the specifiers of this type as a string in a fixed order (the order
* only depends on the specifiers, not on the source program). This is intended
* for debugging queries only and is an expensive operation.
*/
string getSpecifierString() { result = concat(this.getASpecifier().getName(), " ")}
string getSpecifierString() { result = concat(this.getASpecifier().getName(), " ") }
override string explain() {
result = this.getSpecifierString() + " {" + this.getBaseType().explain() + "}"