c – Clang格式将语句体分成多行
发布时间:2020-12-16 10:25:56 所属栏目:百科 来源:网络整理
导读:我有以下.cpp文件: ////////////////////////////////////////////////////////////////////////////////void call_long_function_name(bool) {}void sf(bool) {}int main() { bool test = true; if (test) { call_function_name(test); } if (test) { sf(t
我有以下.cpp文件:
//////////////////////////////////////////////////////////////////////////////// void call_long_function_name(bool) {} void sf(bool) {} int main() { bool test = true; if (test) { call_function_name(test); } if (test) { sf(test); } return 0; } (斜杠分隔80个字符).使用以下配置文件,clang-format建议: //////////////////////////////////////////////////////////////////////////////// void call_long_function_name(bool) {} void sf(bool) {} int main() { bool test = true; if (test) { call_function_name(test); } if (test) { sf(test); } return 0; } 甚至在文件中我允许简短的if语句适合单行. >我设置了错误的选项吗? Clang-format的.clang格式文件 BasedOnStyle: Google AccessModifierOffset: -1 AlignEscapedNewlinesLeft: true AlignTrailingComments: true AllowAllParametersOfDeclarationOnNextLine: true AllowShortFunctionsOnASingleLine: true AllowShortIfStatementsOnASingleLine: true AllowShortLoopsOnASingleLine: true AlwaysBreakBeforeMultilineStrings: false AlwaysBreakTemplateDeclarations: false BinPackParameters: true BreakBeforeBinaryOperators: true BreakBeforeBraces: Attach BreakBeforeTernaryOperators: true BreakConstructorInitializersBeforeComma: true ColumnLimit: 80 ConstructorInitializerAllOnOneLineOrOnePerLine: true ConstructorInitializerIndentWidth: 2 ContinuationIndentWidth: 0 Cpp11BracedListStyle: true DerivePointerBinding: true IndentCaseLabels: true IndentFunctionDeclarationAfterType: true IndentWidth: 2 MaxEmptyLinesToKeep: 1 NamespaceIndentation: None PointerBindsToType: true SpaceAfterControlStatementKeyword: true SpaceBeforeAssignmentOperators: true SpaceInEmptyParentheses: false SpacesBeforeTrailingComments: 2 SpacesInCStyleCastParentheses: false SpacesInParentheses: false SpacesInAngles: false Standard: Cpp11 TabWidth: 2 UseTab: Never 解决方法
较新版本的clang-format有一个额外的选项“AllowShortBlocksOnASingleLine”,它控制着这种行为.
(编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |