diff options
| author | 2023-07-17 15:38:28 -0400 | |
|---|---|---|
| committer | 2023-07-17 15:46:24 -0400 | |
| commit | e0fb1d3d172d4372a1216e939b3cac941782b09e (patch) | |
| tree | 7fbcd2deee057367f169f899559f21a549a04868 /src/common | |
| parent | network: Forward declarations (diff) | |
| download | yuzu-e0fb1d3d172d4372a1216e939b3cac941782b09e.tar.gz yuzu-e0fb1d3d172d4372a1216e939b3cac941782b09e.tar.xz yuzu-e0fb1d3d172d4372a1216e939b3cac941782b09e.zip | |
ssl: Reorder inclusions
Diffstat (limited to 'src/common')
| -rw-r--r-- | src/common/socket_types.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/common/socket_types.h b/src/common/socket_types.h index b2191c2e8..63824a5c4 100644 --- a/src/common/socket_types.h +++ b/src/common/socket_types.h | |||
| @@ -3,9 +3,10 @@ | |||
| 3 | 3 | ||
| 4 | #pragma once | 4 | #pragma once |
| 5 | 5 | ||
| 6 | #include "common/common_types.h" | ||
| 7 | |||
| 8 | #include <optional> | 6 | #include <optional> |
| 7 | #include <string> | ||
| 8 | |||
| 9 | #include "common/common_types.h" | ||
| 9 | 10 | ||
| 10 | namespace Network { | 11 | namespace Network { |
| 11 | 12 | ||