diff options
| author | 2023-07-17 23:57:39 -0400 | |
|---|---|---|
| committer | 2023-07-17 23:57:39 -0400 | |
| commit | 3fded314f22554c867a283ca3b5c79069d96fe0d (patch) | |
| tree | 633beb9295b25dfca6b7b53f07842eb366d32cb6 /src/common | |
| parent | Merge pull request #10934 from abouvier/cmake-vma (diff) | |
| parent | ssl: Link with crypt32 for secure channel backend (diff) | |
| download | yuzu-3fded314f22554c867a283ca3b5c79069d96fe0d.tar.gz yuzu-3fded314f22554c867a283ca3b5c79069d96fe0d.tar.xz yuzu-3fded314f22554c867a283ca3b5c79069d96fe0d.zip | |
Merge pull request #11109 from Morph1984/net
network: Fix compilation with ENABLE_WEB_SERVICE=OFF
Diffstat (limited to '')
| -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 | ||