Skip to content

Commit 82a44b1

Browse files
committed
ProgressCallback: Avoid unnecessary struct padding
1 parent 4290f75 commit 82a44b1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/common/progress_callback.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,15 @@ class ProgressCallback
5454
bool cancellable;
5555
};
5656

57-
bool m_cancellable = false;
58-
bool m_cancelled = false;
5957
std::string m_status_text;
6058
u32 m_progress_range = 1;
6159
u32 m_progress_value = 0;
6260

6361
u32 m_base_progress_value = 0;
6462

63+
bool m_cancellable = false;
64+
bool m_cancelled = false;
65+
6566
std::unique_ptr<State> m_saved_state;
6667

6768
public:

0 commit comments

Comments
 (0)