reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/unittests/Format/FormatTest.cpp
 8994   AllowsMergedIf.AllowShortIfStatementsOnASingleLine =
 8996   verifyFormat("void f() { f(); }\n#error E", AllowsMergedIf);
 8997   verifyFormat("if (true) return 42;\n#error E", AllowsMergedIf);
 8998   verifyFormat("if (true)\n#error E\n  return 42;", AllowsMergedIf);
 9000             format("if (true)\nreturn 42;", AllowsMergedIf));
 9001   FormatStyle ShortMergedIf = AllowsMergedIf;