Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.

Commit 0c5dac4

Browse files
authored
fix: -Wreorder warning in DownloadService constructor (#2077)
1 parent 8681544 commit 0c5dac4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

engine/services/download_service.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ class DownloadService {
8787

8888
explicit DownloadService(std::shared_ptr<EventQueue> event_queue,
8989
std::shared_ptr<ConfigService> config_service)
90-
: event_queue_{event_queue}, config_service_{config_service} {
90+
: config_service_{config_service}, event_queue_{event_queue} {
9191
InitializeWorkers();
9292
};
9393

0 commit comments

Comments
 (0)