summaryrefslogtreecommitdiff
path: root/src/spells3.cc
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2015-02-23 09:11:55 +0100
committerBardur Arantsson <bardur@scientician.net>2015-02-23 09:11:55 +0100
commitb3585338e36d7a660fe3019131746feb9e445308 (patch)
treec1979d50288b8bba1ff5a472fd844b758c5fc618 /src/spells3.cc
parent4b8efa36e1f5676a31c303b656567249f4fd8cb2 (diff)
Fix header inclusion order problem in spells3.cc
We failed to include spells3.hpp first, which could cause spurious trouble for clients of spells3.hpp.
Diffstat (limited to 'src/spells3.cc')
-rw-r--r--src/spells3.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/spells3.cc b/src/spells3.cc
index 86754a34..205b5bd1 100644
--- a/src/spells3.cc
+++ b/src/spells3.cc
@@ -1,5 +1,5 @@
-#include "angband.h"
#include "spells3.hpp"
+#include "angband.h"
#include <assert.h>