200字范文,内容丰富有趣,生活中的好帮手!
200字范文 > c语言多文件 clang c – 具有多行函数声明参数的Clang格式问题

c语言多文件 clang c – 具有多行函数声明参数的Clang格式问题

时间:2021-04-09 19:19:24

相关推荐

c语言多文件 clang c – 具有多行函数声明参数的Clang格式问题

Clang格式一直这样做:

bool importSomethingIn( const boost::property_tree::ptree& inBoostTree,int inSomeIndex,std::shared_ptr

inSomething,int x,int y );

当我想要这样做:

bool importSomethingIn( const boost::property_tree::ptree& inBoostTree,std::shared_ptr inSomething,int y );

请注意,它是在符号之前添加一个换行符和缩进.它似乎始终是导致此行为的模板类型.

如何阻止这样做?

这是我当前的.clang格式:

BasedOnStyle: LLVM

Language: Cpp

AccessModifierOffset: -4

AlignEscapedNewlinesLeft: false

AlignTrailingComments: true

AllowAllParametersOfDeclarationOnNextLine: true

AllowShortFunctionsOnASingleLine: false

AllowShortIfStatementsOnASingleLine: false

AllowShortLoopsOnASingleLine: false

AlwaysBreakAfterDefinitionReturnType: true

AlwaysBreakBeforeMultilineStrings: false

AlwaysBreakTemplateDeclarations: false

BinPackParameters: false

BreakBeforeBinaryOperators: false

BreakBeforeBraces: Allman

BreakBeforeTernaryOperators: false

BreakConstructorInitializersBeforeComma: false

ColumnLimit: 120

CommentPragmas: ''

ConstructorInitializerAllOnOneLineOrOnePerLine: false

ConstructorInitializerIndentWidth: 4

ContinuationIndentWidth: 4

Cpp11BracedListStyle: true

DerivePointerAlignment: false

DerivePointerBinding: false

ExperimentalAutoDetectBinPacking: false

IndentCaseLabels: true

IndentFunctionDeclarationAfterType: true

IndentWidth: 4

IndentWrappedFunctionNames: false

KeepEmptyLinesAtTheStartOfBlocks: false

MaxEmptyLinesToKeep: 2

NamespaceIndentation: All

ObjCBlockIndentWidth: 4

ObjCSpaceAfterProperty: true

ObjCSpaceBeforeProtocolList: true

PenaltyBreakBeforeFirstCallParameter: 19

PenaltyBreakComment: 300

PenaltyBreakFirstLessLess: 120

PenaltyBreakString: 1000

PenaltyExcessCharacter: 1000

PenaltyReturnTypeOnItsOwnLine: 60

PointerAlignment: Left

PointerBindsToType: true

SpaceBeforeAssignmentOperators: true

SpaceBeforeParens: ControlStatements

SpaceInEmptyParentheses: false

SpacesBeforeTrailingComments: 1

SpacesInAngles: false

SpacesInContainerLiterals: true

SpacesInCStyleCastParentheses: false

SpacesInParentheses: true

Standard: Cpp11

TabWidth: 8

UseTab: Never

编辑:我使用cl格式Xcode插件,我获得了here在github 7月(首先安装了阿尔卡特拉德然后ang格式插件与Aclatraz).我不完全确定clang格式二进制文件的位置,因此没有看到插件附带的版本号.

但是,根据下面的建议,我使用Homebrew安装了clang格式,它给了我3.9.0版本.然后我将Xcode插件设置为“使用系统clang-format”,并得到所需的结果,所以我猜这是一个bug.

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。