在' new'之前,令人无法理解的(对我来说)clang格式空间关键词

时间:2016-11-04 21:17:04

标签: objective-c clang-format

在此

上运行clang-format后
- (instancetype)init;
+ (instancetype)new;

我明白了:

- (instancetype)init;
+ (instancetype) new;

如何防止)new之间的空间产生?

我的.clang-format看起来像这样:

BasedOnStyle: Google
AllowShortFunctionsOnASingleLine: Inline
AllowShortIfStatementsOnASingleLine: false
AllowShortLoopsOnASingleLine: false
AlwaysBreakBeforeMultilineStrings: false
BinPackArguments: false
BinPackParameters: false
ColumnLimit: 100
IndentWrappedFunctionNames: true
PointerBindsToType: false

0 个答案:

没有答案