Add missing header include for std::ceil call (#6655)

OpenGLDrawingEngine::ConfigureCanvas calls std::ceil which is defined by
the cmath include. Adding the include directive resolves a compilation
failure to due std::ceil being otherwise undefined.
This commit is contained in:
kitsunenokenja 2017-11-12 09:02:30 -05:00 committed by Ted John
parent bd0bd9e038
commit 04f0048430
1 changed files with 1 additions and 0 deletions

View File

@ -16,6 +16,7 @@
#ifndef DISABLE_OPENGL
#include <cmath>
#include <unordered_map>
#include <SDL.h>