Move standard header include to precompiled header

- Im getting forced to do this help
This commit is contained in:
Jan 2021-09-11 17:54:50 +02:00
parent c0a1a99d8b
commit 8ef991f81f
2 changed files with 2 additions and 3 deletions

View File

@ -1,8 +1,5 @@
#include "STDInclude.hpp"
#include <limits>
#include <cmath>
namespace Components
{
Game::ButtonToCodeMap_t Gamepad::buttonList[]

View File

@ -40,6 +40,8 @@
#include <unordered_map>
#include <queue>
#include <algorithm>
#include <limits>
#include <cmath>
// Experimental C++17 features
#include <filesystem>