Fixed compilation with older gcc

This commit is contained in:
Deve 2018-08-24 22:59:46 +02:00
parent 8b2a40e914
commit 7738eb7899
2 changed files with 2 additions and 1 deletions

View File

@ -39,7 +39,7 @@ class Plunger;
class RubberBand : public NoCopy
{
public:
enum RubberBandTo : uint8_t
enum RubberBandTo
{
RB_TO_PLUNGER = 0, /**< Rubber band is attached to plunger. */
RB_TO_KART, /**< Rubber band is attached to a kart hit. */

View File

@ -34,6 +34,7 @@
#include <assert.h>
#include <stdarg.h>
#include <stdexcept>
#include <string>
#include <string.h>
#include <vector>