C++: Fix formatting

This commit is contained in:
Dave Bartolomeo
2019-12-16 10:00:54 -07:00
parent 914288d3c5
commit 60c40adf31

View File

@@ -215,9 +215,7 @@ class PreprocessorUndef extends PreprocessorDirective, @ppd_undef {
*/
class PreprocessorPragma extends PreprocessorDirective, @ppd_pragma {
override string toString() {
if exists(this.getHead())
then result = "#pragma " + this.getHead()
else result = "#pragma"
if exists(this.getHead()) then result = "#pragma " + this.getHead() else result = "#pragma"
}
}