more include fixes (CoordStack.h)

This commit is contained in:
jacob1 2017-11-23 16:06:09 -05:00
parent 2ccbec1d05
commit c9d9f5b71d

View File

@ -17,6 +17,7 @@
#define Simulation_CoordStack_h
#include "Config.h" // for XRES and YRES
#include <cstdlib>
#include <exception>
class CoordStackOverflowException: public std::exception
@ -27,7 +28,7 @@ public:
{
return "Maximum number of entries in the coordinate stack was exceeded";
}
~CoordStackOverflowException() throw() {};
~CoordStackOverflowException() throw() {}
};
class CoordStack