Add #include <cmath> for std::ceil() #113

A couple files that use the std::ceil() math ceiling function were not
including the required header <cmath> and this seemed to have been
causing build errors on some Linux distributions.

Add the necessary #include <cmath> statement to both files.
This commit is contained in:
Rafael Kitover 2017-05-05 10:21:03 -07:00
parent 01dd7cef45
commit fed6f2389e
2 changed files with 2 additions and 0 deletions

View File

@ -1,3 +1,4 @@
#include <cmath>
#import <Foundation/Foundation.h>
#import <Cocoa/Cocoa.h>

View File

@ -1,3 +1,4 @@
#include <cmath>
#include <wx/dcbuffer.h>
#include <SDL_joystick.h>