Skip to content

Commit 6244896

Browse files
authoredApr 5, 2023
Upgrade clang-format to 15.0.7 (#15110)
Upgrading clang-format lead to a few changes in the formatting of code inside macros. Apart from the upgrade, I've also spent some time removing all options from .clang-format that are redundant with `BasedOnStyle: Microsoft`.
1 parent ecb5e37 commit 6244896

File tree

13 files changed

+188
-138
lines changed

13 files changed

+188
-138
lines changed
 

‎.clang-format

+3-57
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,25 @@
1-
1+
---
2+
Language: Cpp
3+
BasedOnStyle: Microsoft
24
AccessModifierOffset: -4
3-
AlignAfterOpenBracket: Align
4-
AllowAllArgumentsOnNextLine: true
5-
AlignConsecutiveMacros: false
6-
AlignConsecutiveAssignments: false
7-
AlignConsecutiveDeclarations: false
8-
AllowAllConstructorInitializersOnNextLine: true
95
AlignEscapedNewlines: Left
10-
AlignOperands: true
116
AlignTrailingComments: false
127
AllowAllParametersOfDeclarationOnNextLine: false
13-
AllowShortBlocksOnASingleLine: Never
148
AllowShortFunctionsOnASingleLine: All
15-
AllowShortCaseLabelsOnASingleLine: false
16-
AllowShortIfStatementsOnASingleLine: Never
17-
#AllowShortLambdasOnASingleLine: Inline
18-
AllowShortLoopsOnASingleLine: false
19-
AlwaysBreakAfterReturnType: None
20-
AlwaysBreakBeforeMultilineStrings: false
219
AlwaysBreakTemplateDeclarations: Yes
2210
BinPackArguments: false
2311
BinPackParameters: false
2412
BraceWrapping:
2513
AfterCaseLabel: true
26-
AfterClass: true
27-
AfterControlStatement: true
28-
AfterEnum: true
29-
AfterFunction: true
30-
AfterNamespace: true
31-
AfterObjCDeclaration: true
32-
AfterStruct: true
3314
AfterUnion: true
3415
AfterExternBlock: false
35-
BeforeCatch: true
36-
BeforeElse: true
37-
IndentBraces: false
38-
SplitEmptyFunction: true
39-
SplitEmptyRecord: true
40-
SplitEmptyNamespace: true
41-
BreakBeforeBinaryOperators: None
42-
BreakBeforeBraces: Custom
4316
BreakBeforeTernaryOperators: false
4417
BreakConstructorInitializers: AfterColon
4518
BreakInheritanceList: AfterColon
4619
ColumnLimit: 0
4720
CommentPragmas: "suppress"
48-
CompactNamespaces: false
4921
ConstructorInitializerAllOnOneLineOrOnePerLine: true
50-
ConstructorInitializerIndentWidth: 4
51-
ContinuationIndentWidth: 4
5222
Cpp11BracedListStyle: false
53-
DeriveLineEnding: true
54-
DerivePointerAlignment: false
5523
FixNamespaceComments: false
5624
IncludeBlocks: Regroup
5725
IncludeCategories:
@@ -63,35 +31,13 @@ IncludeCategories:
6331
Priority: 2
6432
- Regex: '.*'
6533
Priority: 3
66-
IndentCaseLabels: false
67-
IndentPPDirectives: None
68-
IndentWidth: 4
69-
IndentWrappedFunctionNames: false
7034
KeepEmptyLinesAtTheStartOfBlocks: false
7135
MacroBlockBegin: "BEGIN_TEST_METHOD_PROPERTIES|BEGIN_MODULE|BEGIN_TEST_CLASS|BEGIN_TEST_METHOD"
7236
MacroBlockEnd: "END_TEST_METHOD_PROPERTIES|END_MODULE|END_TEST_CLASS|END_TEST_METHOD"
73-
MaxEmptyLinesToKeep: 1
7437
NamespaceIndentation: All
7538
PointerAlignment: Left
7639
ReflowComments: false
7740
SortIncludes: false
78-
SortUsingDeclarations: true
79-
SpaceAfterCStyleCast: false
80-
SpaceAfterLogicalNot: false
8141
SpaceAfterTemplateKeyword: false
82-
SpaceBeforeAssignmentOperators: true
83-
SpaceBeforeCpp11BracedList: false
84-
SpaceBeforeCtorInitializerColon: true
85-
SpaceBeforeInheritanceColon: true
86-
SpaceBeforeParens: ControlStatements
87-
SpaceBeforeRangeBasedForLoopColon: true
88-
SpaceInEmptyParentheses: false
89-
SpacesBeforeTrailingComments: 1
9042
SpacesInAngles: false
91-
SpacesInCStyleCastParentheses: false
9243
SpacesInContainerLiterals: false
93-
SpacesInParentheses: false
94-
SpacesInSquareBrackets: false
95-
Standard: Latest
96-
TabWidth: 4
97-
UseTab: Never

‎.github/actions/spelling/expect/expect.txt

+1-2
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,6 @@ CConsole
177177
CConversion
178178
CCRT
179179
cdd
180-
CDeclaration
181180
CEdit
182181
CELLSIZE
183182
cfae
@@ -333,7 +332,7 @@ Cspace
333332
csrmsg
334333
CSRSS
335334
csrutil
336-
cstyle
335+
CSTYLE
337336
CSwitch
338337
CTerminal
339338
CText

‎src/cascadia/TerminalControl/ControlCore.h

+13-7
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,19 @@ namespace ControlUnitTests
3232
class ControlInteractivityTests;
3333
};
3434

35-
#define RUNTIME_SETTING(type, name, setting) \
36-
private: \
37-
std::optional<type> _runtime##name{ std::nullopt }; \
38-
void name(const type newValue) { _runtime##name = newValue; } \
39-
\
40-
public: \
41-
type name() const { return til::coalesce_value(_runtime##name, setting); }
35+
#define RUNTIME_SETTING(type, name, setting) \
36+
private: \
37+
std::optional<type> _runtime##name{ std::nullopt }; \
38+
void name(const type newValue) \
39+
{ \
40+
_runtime##name = newValue; \
41+
} \
42+
\
43+
public: \
44+
type name() const \
45+
{ \
46+
return til::coalesce_value(_runtime##name, setting); \
47+
}
4248

4349
namespace winrt::Microsoft::Terminal::Control::implementation
4450
{

‎src/cascadia/TerminalControl/ControlSettings.h

+9-3
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,15 @@ namespace winrt::Microsoft::Terminal::Control::implementation
6565
// appearance is being used should be more careful. Fortunately, this
6666
// situation is generally only used when a control is first created, or
6767
// when calling UpdateSettings.
68-
#define APPEARANCE_GEN(type, name, ...) \
69-
type name() const noexcept { return _focusedAppearance->name(); } \
70-
void name(const type& value) noexcept { _focusedAppearance->name(value); }
68+
#define APPEARANCE_GEN(type, name, ...) \
69+
type name() const noexcept \
70+
{ \
71+
return _focusedAppearance->name(); \
72+
} \
73+
void name(const type& value) noexcept \
74+
{ \
75+
_focusedAppearance->name(value); \
76+
}
7177

7278
CORE_APPEARANCE_SETTINGS(APPEARANCE_GEN)
7379
CONTROL_APPEARANCE_SETTINGS(APPEARANCE_GEN)

‎src/cascadia/TerminalSettingsEditor/ViewModelHelpers.h

+27-15
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,25 @@ struct ViewModelHelper
3737
winrt::event<::winrt::Windows::UI::Xaml::Data::PropertyChangedEventHandler> _propertyChangedHandlers;
3838
};
3939

40-
#define _BASE_OBSERVABLE_PROJECTED_SETTING(target, name) \
41-
public: \
42-
auto name() const noexcept { return target.name(); }; \
43-
template<typename T> \
44-
void name(const T& value) \
45-
{ \
46-
if (name() != value) \
47-
{ \
48-
target.name(value); \
49-
_NotifyChanges(L"Has" #name, L## #name); \
50-
} \
51-
} \
52-
bool Has##name() { return target.Has##name(); }
40+
#define _BASE_OBSERVABLE_PROJECTED_SETTING(target, name) \
41+
public: \
42+
auto name() const noexcept \
43+
{ \
44+
return target.name(); \
45+
}; \
46+
template<typename T> \
47+
void name(const T& value) \
48+
{ \
49+
if (name() != value) \
50+
{ \
51+
target.name(value); \
52+
_NotifyChanges(L"Has" #name, L## #name); \
53+
} \
54+
} \
55+
bool Has##name() \
56+
{ \
57+
return target.Has##name(); \
58+
}
5359

5460
// Defines a setting that reflects another object's same-named
5561
// setting.
@@ -64,7 +70,10 @@ public: \
6470
_NotifyChanges(L"Has" #name, L## #name); \
6571
} \
6672
} \
67-
auto name##OverrideSource() { return target.name##OverrideSource(); }
73+
auto name##OverrideSource() \
74+
{ \
75+
return target.name##OverrideSource(); \
76+
}
6877

6978
// Defines a setting that reflects another object's same-named
7079
// setting, but which cannot be erased.
@@ -76,7 +85,10 @@ public: \
7685
// except it leverages _NotifyChanges.
7786
#define VIEW_MODEL_OBSERVABLE_PROPERTY(type, name, ...) \
7887
public: \
79-
type name() const noexcept { return _##name; }; \
88+
type name() const noexcept \
89+
{ \
90+
return _##name; \
91+
}; \
8092
void name(const type& value) \
8193
{ \
8294
if (_##name != value) \

‎src/cascadia/TerminalSettingsEditor/ViewModelHelpers.idl.h

+4-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@
99
get; \
1010
set; \
1111
}; \
12-
Boolean Has##Name { get; }
12+
Boolean Has##Name \
13+
{ \
14+
get; \
15+
}
1316

1417
#define OBSERVABLE_PROJECTED_SETTING(Type, Name) \
1518
_BASE_OBSERVABLE_PROJECTED_SETTING(Type, Name); \

‎src/cascadia/TerminalSettingsModel/ActionArgs.h

+12-6
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,18 @@
5656

5757
#include "ActionArgsMagic.h"
5858

59-
#define ACTION_ARG(type, name, ...) \
60-
public: \
61-
type name() const noexcept { return _##name.has_value() ? _##name.value() : type{ __VA_ARGS__ }; } \
62-
void name(const type& value) noexcept { _##name = value; } \
63-
\
64-
private: \
59+
#define ACTION_ARG(type, name, ...) \
60+
public: \
61+
type name() const noexcept \
62+
{ \
63+
return _##name.has_value() ? _##name.value() : type{ __VA_ARGS__ }; \
64+
} \
65+
void name(const type& value) noexcept \
66+
{ \
67+
_##name = value; \
68+
} \
69+
\
70+
private: \
6571
std::optional<type> _##name{ std::nullopt };
6672

6773
// Notes on defining ActionArgs and ActionEventArgs:

‎src/cascadia/TerminalSettingsModel/IInheritable.idl.h

+4-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@
99
get; \
1010
set; \
1111
}; \
12-
Boolean Has##Name { get; }; \
12+
Boolean Has##Name \
13+
{ \
14+
get; \
15+
}; \
1316
void Clear##Name()
1417

1518
#define INHERITABLE_SETTING(Type, Name) \

‎src/cascadia/inc/cppwinrt_utils.h

+82-34
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,15 @@ protected: \
3232
// Winrt events need a method for adding a callback to the event and removing
3333
// the callback. This macro will define them both for you, because they
3434
// don't really vary from event to event.
35-
#define DEFINE_EVENT(className, name, eventHandler, args) \
36-
winrt::event_token className::name(const args& handler) { return eventHandler.add(handler); } \
37-
void className::name(const winrt::event_token& token) noexcept { eventHandler.remove(token); }
35+
#define DEFINE_EVENT(className, name, eventHandler, args) \
36+
winrt::event_token className::name(const args& handler) \
37+
{ \
38+
return eventHandler.add(handler); \
39+
} \
40+
void className::name(const winrt::event_token& token) noexcept \
41+
{ \
42+
eventHandler.remove(token); \
43+
}
3844

3945
// This is a helper macro to make declaring events easier.
4046
// This will declare the event handler and the methods for adding and removing a
@@ -53,22 +59,34 @@ private:
5359
// the callback. This macro will define them both for you, because they
5460
// don't really vary from event to event.
5561
// Use this if you have a Windows.Foundation.TypedEventHandler
56-
#define DEFINE_EVENT_WITH_TYPED_EVENT_HANDLER(className, name, eventHandler, sender, args) \
57-
winrt::event_token className::name(const Windows::Foundation::TypedEventHandler<sender, args>& handler) { return eventHandler.add(handler); } \
58-
void className::name(const winrt::event_token& token) noexcept { eventHandler.remove(token); }
62+
#define DEFINE_EVENT_WITH_TYPED_EVENT_HANDLER(className, name, eventHandler, sender, args) \
63+
winrt::event_token className::name(const Windows::Foundation::TypedEventHandler<sender, args>& handler) \
64+
{ \
65+
return eventHandler.add(handler); \
66+
} \
67+
void className::name(const winrt::event_token& token) noexcept \
68+
{ \
69+
eventHandler.remove(token); \
70+
}
5971

6072
// This is a helper macro for both declaring the signature of an event, and
6173
// defining the body. Winrt events need a method for adding a callback to the
6274
// event and removing the callback. This macro will both declare the method
6375
// signatures and define them both for you, because they don't really vary from
6476
// event to event.
6577
// Use this in a classes header if you have a Windows.Foundation.TypedEventHandler
66-
#define TYPED_EVENT(name, sender, args) \
67-
public: \
68-
winrt::event_token name(const winrt::Windows::Foundation::TypedEventHandler<sender, args>& handler) { return _##name##Handlers.add(handler); } \
69-
void name(const winrt::event_token& token) { _##name##Handlers.remove(token); } \
70-
\
71-
private: \
78+
#define TYPED_EVENT(name, sender, args) \
79+
public: \
80+
winrt::event_token name(const winrt::Windows::Foundation::TypedEventHandler<sender, args>& handler) \
81+
{ \
82+
return _##name##Handlers.add(handler); \
83+
} \
84+
void name(const winrt::event_token& token) \
85+
{ \
86+
_##name##Handlers.remove(token); \
87+
} \
88+
\
89+
private: \
7290
winrt::event<winrt::Windows::Foundation::TypedEventHandler<sender, args>> _##name##Handlers;
7391

7492
// This is a helper macro for both declaring the signature of a callback (nee event) and
@@ -77,12 +95,18 @@ private:
7795
// signatures and define them both for you, because they don't really vary from
7896
// event to event.
7997
// Use this in a class's header if you have a "delegate" type in your IDL.
80-
#define WINRT_CALLBACK(name, args) \
81-
public: \
82-
winrt::event_token name(const args& handler) { return _##name##Handlers.add(handler); } \
83-
void name(const winrt::event_token& token) { _##name##Handlers.remove(token); } \
84-
\
85-
protected: \
98+
#define WINRT_CALLBACK(name, args) \
99+
public: \
100+
winrt::event_token name(const args& handler) \
101+
{ \
102+
return _##name##Handlers.add(handler); \
103+
} \
104+
void name(const winrt::event_token& token) \
105+
{ \
106+
_##name##Handlers.remove(token); \
107+
} \
108+
\
109+
protected: \
86110
winrt::event<args> _##name##Handlers;
87111

88112
// This is a helper macro for both declaring the signature and body of an event
@@ -91,16 +115,28 @@ protected:
91115
// "proxied" to the handling type. Case in point: many of the events on App are
92116
// just forwarded straight to TerminalPage. This macro will both declare the
93117
// method signatures and define them both for you.
94-
#define FORWARDED_TYPED_EVENT(name, sender, args, handler, handlerName) \
95-
public: \
96-
winrt::event_token name(const Windows::Foundation::TypedEventHandler<sender, args>& h) { return handler->handlerName(h); } \
97-
void name(const winrt::event_token& token) noexcept { handler->handlerName(token); }
118+
#define FORWARDED_TYPED_EVENT(name, sender, args, handler, handlerName) \
119+
public: \
120+
winrt::event_token name(const Windows::Foundation::TypedEventHandler<sender, args>& h) \
121+
{ \
122+
return handler->handlerName(h); \
123+
} \
124+
void name(const winrt::event_token& token) noexcept \
125+
{ \
126+
handler->handlerName(token); \
127+
}
98128

99129
// Same thing, but handler is a projected type, not an implementation
100-
#define PROJECTED_FORWARDED_TYPED_EVENT(name, sender, args, handler, handlerName) \
101-
public: \
102-
winrt::event_token name(const Windows::Foundation::TypedEventHandler<sender, args>& h) { return handler.handlerName(h); } \
103-
void name(const winrt::event_token& token) noexcept { handler.handlerName(token); }
130+
#define PROJECTED_FORWARDED_TYPED_EVENT(name, sender, args, handler, handlerName) \
131+
public: \
132+
winrt::event_token name(const Windows::Foundation::TypedEventHandler<sender, args>& h) \
133+
{ \
134+
return handler.handlerName(h); \
135+
} \
136+
void name(const winrt::event_token& token) noexcept \
137+
{ \
138+
handler.handlerName(token); \
139+
}
104140

105141
// This is a bit like *FORWARDED_TYPED_EVENT. When you use a forwarded event,
106142
// the handler gets added to the object that's raising the event. For example,
@@ -121,17 +157,26 @@ public:
121157
// _core.TitleChanged({ get_weak(), &TermControl::_bubbleTitleChanged });
122158
#define BUBBLED_FORWARDED_TYPED_EVENT(name, sender, args) \
123159
TYPED_EVENT(name, sender, args) \
124-
void _bubble##name(const sender& s, const args& a) { _##name##Handlers(s, a); }
160+
void _bubble##name(const sender& s, const args& a) \
161+
{ \
162+
_##name##Handlers(s, a); \
163+
}
125164

126165
// Use this macro to quick implement both the getter and setter for a property.
127166
// This should only be used for simple types where there's no logic in the
128167
// getter/setter beyond just accessing/updating the value.
129-
#define WINRT_PROPERTY(type, name, ...) \
130-
public: \
131-
type name() const noexcept { return _##name; } \
132-
void name(const type& value) noexcept { _##name = value; } \
133-
\
134-
private: \
168+
#define WINRT_PROPERTY(type, name, ...) \
169+
public: \
170+
type name() const noexcept \
171+
{ \
172+
return _##name; \
173+
} \
174+
void name(const type& value) noexcept \
175+
{ \
176+
_##name = value; \
177+
} \
178+
\
179+
private: \
135180
type _##name{ __VA_ARGS__ };
136181

137182
// Use this macro to quickly implement both the getter and setter for an
@@ -143,7 +188,10 @@ private: \
143188
// (like when the class is being initialized).
144189
#define WINRT_OBSERVABLE_PROPERTY(type, name, event, ...) \
145190
public: \
146-
type name() const noexcept { return _##name; }; \
191+
type name() const noexcept \
192+
{ \
193+
return _##name; \
194+
}; \
147195
void name(const type& value) \
148196
{ \
149197
if (_##name != value) \

‎src/inc/til/bytes.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ namespace til
4040
}
4141

4242
template<ContiguousBytes Target, ContiguousView Source>
43-
requires TriviallyCopyable<typename Source::value_type>
43+
requires TriviallyCopyable<typename Source::value_type>
4444
constexpr void bytes_transfer(Target& target, Source& source)
4545
{
4646
using TargetType = typename Target::value_type;

‎src/inc/til/pmr.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ namespace til::pmr
3939
{
4040
if (align > __STDCPP_DEFAULT_NEW_ALIGNMENT__)
4141
{
42-
return ::operator new (bytes, std::align_val_t{ align });
42+
return ::operator new(bytes, std::align_val_t{ align });
4343
}
4444

4545
return ::operator new(bytes);
@@ -49,7 +49,7 @@ namespace til::pmr
4949
{
5050
if (align > __STDCPP_DEFAULT_NEW_ALIGNMENT__)
5151
{
52-
return ::operator delete (ptr, bytes, std::align_val_t{ align });
52+
return ::operator delete(ptr, bytes, std::align_val_t{ align });
5353
}
5454

5555
::operator delete(ptr, bytes);

‎src/renderer/atlas/AtlasEngine.h

+29-8
Original file line numberDiff line numberDiff line change
@@ -94,14 +94,35 @@ namespace Microsoft::Console::Render
9494
return __builtin_memcmp(this, &rhs, sizeof(rhs)) != 0; \
9595
}
9696

97-
#define ATLAS_FLAG_OPS(type, underlying) \
98-
friend constexpr type operator~(type v) noexcept { return static_cast<type>(~static_cast<underlying>(v)); } \
99-
friend constexpr type operator|(type lhs, type rhs) noexcept { return static_cast<type>(static_cast<underlying>(lhs) | static_cast<underlying>(rhs)); } \
100-
friend constexpr type operator&(type lhs, type rhs) noexcept { return static_cast<type>(static_cast<underlying>(lhs) & static_cast<underlying>(rhs)); } \
101-
friend constexpr type operator^(type lhs, type rhs) noexcept { return static_cast<type>(static_cast<underlying>(lhs) ^ static_cast<underlying>(rhs)); } \
102-
friend constexpr void operator|=(type& lhs, type rhs) noexcept { lhs = lhs | rhs; } \
103-
friend constexpr void operator&=(type& lhs, type rhs) noexcept { lhs = lhs & rhs; } \
104-
friend constexpr void operator^=(type& lhs, type rhs) noexcept { lhs = lhs ^ rhs; }
97+
#define ATLAS_FLAG_OPS(type, underlying) \
98+
friend constexpr type operator~(type v) noexcept \
99+
{ \
100+
return static_cast<type>(~static_cast<underlying>(v)); \
101+
} \
102+
friend constexpr type operator|(type lhs, type rhs) noexcept \
103+
{ \
104+
return static_cast<type>(static_cast<underlying>(lhs) | static_cast<underlying>(rhs)); \
105+
} \
106+
friend constexpr type operator&(type lhs, type rhs) noexcept \
107+
{ \
108+
return static_cast<type>(static_cast<underlying>(lhs) & static_cast<underlying>(rhs)); \
109+
} \
110+
friend constexpr type operator^(type lhs, type rhs) noexcept \
111+
{ \
112+
return static_cast<type>(static_cast<underlying>(lhs) ^ static_cast<underlying>(rhs)); \
113+
} \
114+
friend constexpr void operator|=(type& lhs, type rhs) noexcept \
115+
{ \
116+
lhs = lhs | rhs; \
117+
} \
118+
friend constexpr void operator&=(type& lhs, type rhs) noexcept \
119+
{ \
120+
lhs = lhs & rhs; \
121+
} \
122+
friend constexpr void operator^=(type& lhs, type rhs) noexcept \
123+
{ \
124+
lhs = lhs ^ rhs; \
125+
}
105126

106127
template<typename T>
107128
struct vec2

‎tools/packages.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="clang-format.win-x86" version="13.0.1" targetFramework="native" />
3+
<package id="clang-format.win-x86" version="15.0.7" targetFramework="native" />
44
</packages>

0 commit comments

Comments
 (0)
Please sign in to comment.