Skip to content

Commit

Permalink
more include fixes (CoordStack.h)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob1 committed Nov 23, 2017
1 parent 2ccbec1 commit c9d9f5b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/simulation/CoordStack.h
Expand Up @@ -17,6 +17,7 @@
#define Simulation_CoordStack_h

#include "Config.h" // for XRES and YRES
#include <cstdlib>
#include <exception>

class CoordStackOverflowException: public std::exception
Expand All @@ -27,7 +28,7 @@ class CoordStackOverflowException: public std::exception
{
return "Maximum number of entries in the coordinate stack was exceeded";
}
~CoordStackOverflowException() throw() {};
~CoordStackOverflowException() throw() {}
};

class CoordStack
Expand Down

0 comments on commit c9d9f5b

Please sign in to comment.