1
1
forked from 0ad/0ad

Fix compilation error on arch introduced by 5473393e30

CLogger.h uses std::deque but doesn't include the required header file.
This fails since 5473393e30 on Arch Linux

Reported by: navigo_ps91
Reviewed By: irishninja
Differential Revision: https://code.wildfiregames.com/D2928
This was SVN commit r23933.
This commit is contained in:
wraitii 2020-08-05 09:25:24 +00:00
parent 1dd01f2ca8
commit 395a10beb0

View File

@ -18,6 +18,7 @@
#ifndef INCLUDED_CLOGGER
#define INCLUDED_CLOGGER
#include <deque>
#include <fstream>
#include <mutex>
#include <string>