From 3dad53a7ee56af933451b66d1cbdf1b1f476474b Mon Sep 17 00:00:00 2001 From: vladislavbelov Date: Wed, 26 Oct 2022 00:15:27 +0000 Subject: [PATCH] Fixes without PCH build in StunClient missing include for std::byte added in 895e4e6aa6. Differential Revision: https://code.wildfiregames.com/D4814 This was SVN commit r27174. --- source/network/StunClient.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/network/StunClient.cpp b/source/network/StunClient.cpp index e1c2c65d2c..e79524648f 100644 --- a/source/network/StunClient.cpp +++ b/source/network/StunClient.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2021 Wildfire Games. +/* Copyright (C) 2022 Wildfire Games. * Copyright (C) 2013-2016 SuperTuxKart-Team. * This file is part of 0 A.D. * @@ -21,15 +21,15 @@ #include "StunClient.h" #include "lib/byte_order.h" +#include "lib/external_libraries/enet.h" #include "ps/CLogger.h" #include "ps/ConfigDB.h" #include "ps/CStr.h" -#include "lib/external_libraries/enet.h" - #include -#include +#include #include +#include namespace StunClient {