Skip to content

Commit 13b83a9

Browse files
committed
fix order
1 parent 5d6c086 commit 13b83a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CodeFormatCore/include/CodeFormatCore/Format/Analyzer/SpaceAnalyzer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class SpaceAnalyzer : public FormatAnalyzer {
4444
struct SpaceData {
4545
SpaceData() : SpaceData(0) {}
4646

47-
explicit SpaceData(std::size_t space, SpacePriority priority = SpacePriority::Normal) : Priority(priority), Value(space) {}
47+
explicit SpaceData(std::size_t space, SpacePriority priority = SpacePriority::Normal) : Value(space), Priority(priority) {}
4848

4949
std::size_t Value;
5050
SpacePriority Priority;

0 commit comments

Comments
 (0)