diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2013-11-15 21:52:11 -0800 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2013-11-15 21:52:26 -0800 |
commit | 4420659effaee63e1a814e5aae1350f1924731ab (patch) | |
tree | 840eaff58b703d097bb273779ba0e9c05c7546d7 | |
parent | 672c4091b5a43442759886144607aa407a04e5bc (diff) | |
download | tmwa-4420659effaee63e1a814e5aae1350f1924731ab.tar.gz tmwa-4420659effaee63e1a814e5aae1350f1924731ab.tar.bz2 tmwa-4420659effaee63e1a814e5aae1350f1924731ab.tar.xz tmwa-4420659effaee63e1a814e5aae1350f1924731ab.zip |
Another step towards proper header ordering
64 files changed, 86 insertions, 76 deletions
diff --git a/src/admin/ladmin.cpp b/src/admin/ladmin.cpp index 023aeae..d41b74d 100644 --- a/src/admin/ladmin.cpp +++ b/src/admin/ladmin.cpp @@ -11,11 +11,11 @@ #include "../strings/xstring.hpp" #include "../strings/vstring.hpp" +#include "../io/cxxstdio.hpp" #include "../io/read.hpp" #include "../io/write.hpp" #include "../common/core.hpp" -#include "../common/cxxstdio.hpp" #include "../common/human_time_diff.hpp" #include "../common/md5calc.hpp" #include "../common/mmo.hpp" diff --git a/src/char/char.cpp b/src/char/char.cpp index a3b1a27..5c5179d 100644 --- a/src/char/char.cpp +++ b/src/char/char.cpp @@ -20,11 +20,11 @@ #include "../strings/zstring.hpp" #include "../strings/xstring.hpp" +#include "../io/cxxstdio.hpp" #include "../io/lock.hpp" #include "../io/read.hpp" #include "../common/core.hpp" -#include "../common/cxxstdio.hpp" #include "../common/db.hpp" #include "../common/extract.hpp" #include "../common/human_time_diff.hpp" diff --git a/src/char/int_party.cpp b/src/char/int_party.cpp index 41aa9c3..2972689 100644 --- a/src/char/int_party.cpp +++ b/src/char/int_party.cpp @@ -7,10 +7,10 @@ #include "../strings/fstring.hpp" #include "../strings/xstring.hpp" +#include "../io/cxxstdio.hpp" #include "../io/lock.hpp" #include "../io/read.hpp" -#include "../common/cxxstdio.hpp" #include "../common/db.hpp" #include "../common/extract.hpp" #include "../common/mmo.hpp" diff --git a/src/char/int_storage.cpp b/src/char/int_storage.cpp index 304a792..4e52215 100644 --- a/src/char/int_storage.cpp +++ b/src/char/int_storage.cpp @@ -9,10 +9,10 @@ #include "../strings/fstring.hpp" #include "../strings/xstring.hpp" +#include "../io/cxxstdio.hpp" #include "../io/lock.hpp" #include "../io/read.hpp" -#include "../common/cxxstdio.hpp" #include "../common/db.hpp" #include "../common/extract.hpp" #include "../common/mmo.hpp" diff --git a/src/char/inter.cpp b/src/char/inter.cpp index 330ea66..38e6194 100644 --- a/src/char/inter.cpp +++ b/src/char/inter.cpp @@ -11,10 +11,10 @@ #include "../strings/zstring.hpp" #include "../strings/xstring.hpp" +#include "../io/cxxstdio.hpp" #include "../io/lock.hpp" #include "../io/read.hpp" -#include "../common/cxxstdio.hpp" #include "../common/db.hpp" #include "../common/extract.hpp" #include "../common/socket.hpp" diff --git a/src/common/const_array.hpp b/src/common/const_array.hpp index 314eccf..383a4e2 100644 --- a/src/common/const_array.hpp +++ b/src/common/const_array.hpp @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. -#include "sanity.hpp" +#include "../sanity.hpp" #include <cstring> diff --git a/src/common/core.hpp b/src/common/core.hpp index 1cbd0c2..11b04fd 100644 --- a/src/common/core.hpp +++ b/src/common/core.hpp @@ -1,7 +1,7 @@ #ifndef CORE_HPP #define CORE_HPP -#include "sanity.hpp" +#include "../sanity.hpp" #include "../strings/fwd.hpp" diff --git a/src/common/cxxstdio_test.cpp b/src/common/cxxstdio_test.cpp deleted file mode 100644 index 9b6eeb2..0000000 --- a/src/common/cxxstdio_test.cpp +++ /dev/null @@ -1,3 +0,0 @@ -#include "cxxstdio.hpp" - -#include <gtest/gtest.h> diff --git a/src/common/db.hpp b/src/common/db.hpp index 927db22..0384f1c 100644 --- a/src/common/db.hpp +++ b/src/common/db.hpp @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. -# include "sanity.hpp" +# include "../sanity.hpp" # include <map> # include <memory> diff --git a/src/common/dumb_ptr.hpp b/src/common/dumb_ptr.hpp index bcc9dda..1dba39d 100644 --- a/src/common/dumb_ptr.hpp +++ b/src/common/dumb_ptr.hpp @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. -#include "sanity.hpp" +#include "../sanity.hpp" #include <cstring> diff --git a/src/common/extract.hpp b/src/common/extract.hpp index dd0a8a3..4f90be4 100644 --- a/src/common/extract.hpp +++ b/src/common/extract.hpp @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. -#include "sanity.hpp" +#include "../sanity.hpp" #include <algorithm> diff --git a/src/common/human_time_diff.hpp b/src/common/human_time_diff.hpp index a937316..b8754b2 100644 --- a/src/common/human_time_diff.hpp +++ b/src/common/human_time_diff.hpp @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. -#include "sanity.hpp" +#include "../sanity.hpp" #include "../strings/xstring.hpp" diff --git a/src/common/ip.cpp b/src/common/ip.cpp index a1fdfda..146734a 100644 --- a/src/common/ip.cpp +++ b/src/common/ip.cpp @@ -21,7 +21,7 @@ #include "../strings/xstring.hpp" #include "../strings/vstring.hpp" -#include "cxxstdio.hpp" +#include "../io/cxxstdio.hpp" #include "../poison.hpp" diff --git a/src/common/ip.hpp b/src/common/ip.hpp index cce6c2b..7e645bb 100644 --- a/src/common/ip.hpp +++ b/src/common/ip.hpp @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. -#include "sanity.hpp" +#include "../sanity.hpp" #include <netinet/in.h> diff --git a/src/common/ip_test.cpp b/src/common/ip_test.cpp index 64a537f..7ef1047 100644 --- a/src/common/ip_test.cpp +++ b/src/common/ip_test.cpp @@ -2,7 +2,7 @@ #include <gtest/gtest.h> -#include "cxxstdio.hpp" +#include "../io/cxxstdio.hpp" #define CB(X) (std::integral_constant<bool, (X)>::value) TEST(ip4addr, cmp) diff --git a/src/common/md5calc.cpp b/src/common/md5calc.cpp index 70b0e1f..8d650fa 100644 --- a/src/common/md5calc.cpp +++ b/src/common/md5calc.cpp @@ -5,9 +5,9 @@ #include "../strings/xstring.hpp" #include "../strings/vstring.hpp" +#include "../io/cxxstdio.hpp" #include "../io/read.hpp" -#include "cxxstdio.hpp" #include "random.hpp" #include "utils.hpp" diff --git a/src/common/md5calc.hpp b/src/common/md5calc.hpp index 205c21a..479c1a9 100644 --- a/src/common/md5calc.hpp +++ b/src/common/md5calc.hpp @@ -1,7 +1,7 @@ #ifndef MD5CALC_HPP #define MD5CALC_HPP -#include "sanity.hpp" +#include "../sanity.hpp" #include <netinet/in.h> diff --git a/src/common/mmo.hpp b/src/common/mmo.hpp index cfc7b78..0f89c81 100644 --- a/src/common/mmo.hpp +++ b/src/common/mmo.hpp @@ -2,7 +2,7 @@ #ifndef MMO_HPP #define MMO_HPP -# include "sanity.hpp" +# include "../sanity.hpp" # include "../strings/vstring.hpp" diff --git a/src/common/nullpo.hpp b/src/common/nullpo.hpp index 9eb9ea9..26aab20 100644 --- a/src/common/nullpo.hpp +++ b/src/common/nullpo.hpp @@ -21,7 +21,7 @@ # define nullpo_ret(t) nullpo_retr(0, t) # define nullpo_retv(t) nullpo_retr(, t) -# include "sanity.hpp" +# include "../sanity.hpp" /// Used by macros in this header bool nullpo_chk(const char *file, int line, const char *func, diff --git a/src/common/random.hpp b/src/common/random.hpp index 44057ed..a694cce 100644 --- a/src/common/random.hpp +++ b/src/common/random.hpp @@ -3,7 +3,7 @@ # include "random.t.hpp" -# include "sanity.hpp" +# include "../sanity.hpp" # include <random> diff --git a/src/common/socket.cpp b/src/common/socket.cpp index c7e6ed2..b507cd8 100644 --- a/src/common/socket.cpp +++ b/src/common/socket.cpp @@ -12,7 +12,7 @@ #include <cstring> #include <ctime> -#include "cxxstdio.hpp" +#include "../io/cxxstdio.hpp" //#include "mmo.hpp" #include "utils.hpp" diff --git a/src/common/socket.hpp b/src/common/socket.hpp index 1ff400a..8a2ee3a 100644 --- a/src/common/socket.hpp +++ b/src/common/socket.hpp @@ -1,7 +1,7 @@ #ifndef SOCKET_HPP #define SOCKET_HPP -# include "sanity.hpp" +# include "../sanity.hpp" # include <netinet/in.h> diff --git a/src/common/timer.cpp b/src/common/timer.cpp index 17c6d80..ee62df2 100644 --- a/src/common/timer.cpp +++ b/src/common/timer.cpp @@ -10,7 +10,8 @@ #include "../strings/zstring.hpp" -#include "cxxstdio.hpp" +#include "../io/cxxstdio.hpp" + #include "utils.hpp" #include "../poison.hpp" diff --git a/src/common/timer.hpp b/src/common/timer.hpp index de867ab..a54cb36 100644 --- a/src/common/timer.hpp +++ b/src/common/timer.hpp @@ -3,7 +3,7 @@ # include "timer.t.hpp" -# include "sanity.hpp" +# include "../sanity.hpp" # include "../strings/fwd.hpp" diff --git a/src/common/utils.cpp b/src/common/utils.cpp index 0f8a0af..7f9a7ee 100644 --- a/src/common/utils.cpp +++ b/src/common/utils.cpp @@ -9,9 +9,9 @@ #include "../strings/zstring.hpp" #include "../strings/xstring.hpp" +#include "../io/cxxstdio.hpp" #include "../io/write.hpp" -#include "cxxstdio.hpp" #include "extract.hpp" #include "../poison.hpp" diff --git a/src/common/utils.hpp b/src/common/utils.hpp index 4171759..2d2e2d5 100644 --- a/src/common/utils.hpp +++ b/src/common/utils.hpp @@ -1,7 +1,7 @@ #ifndef UTILS_HPP #define UTILS_HPP -#include "sanity.hpp" +#include "../sanity.hpp" #include <cstdio> #include <cstring> diff --git a/src/common/utils2.hpp b/src/common/utils2.hpp index adcb465..7dbd741 100644 --- a/src/common/utils2.hpp +++ b/src/common/utils2.hpp @@ -1,7 +1,7 @@ #ifndef UTILS2_HPP #define UTILS2_HPP -#include "sanity.hpp" +#include "../sanity.hpp" #include <algorithm> #include <functional> diff --git a/src/io/cxxstdio.cpp b/src/io/cxxstdio.cpp new file mode 100644 index 0000000..47617cb --- /dev/null +++ b/src/io/cxxstdio.cpp @@ -0,0 +1 @@ +#include "cxxstdio.hpp" diff --git a/src/common/cxxstdio.hpp b/src/io/cxxstdio.hpp index 1ae1be3..0d0bdba 100644 --- a/src/common/cxxstdio.hpp +++ b/src/io/cxxstdio.hpp @@ -1,5 +1,5 @@ -#ifndef CXXSTDIO_HPP -#define CXXSTDIO_HPP +#ifndef TMWA_IO_CXXSTDIO_HPP +#define TMWA_IO_CXXSTDIO_HPP // cxxstdio.hpp - pass C++ types through scanf/printf // // Copyright © 2011-2013 Ben Longbons <b.r.longbons@gmail.com> @@ -19,15 +19,16 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. -#include "sanity.hpp" +#include "../sanity.hpp" #include <cstdarg> #include <cstdio> -#include "../io/fwd.hpp" +// TODO get rid of these header order violations +#include "../common/const_array.hpp" +#include "../common/utils2.hpp" -#include "const_array.hpp" -#include "utils2.hpp" +#include "fwd.hpp" namespace cxxstdio @@ -260,4 +261,4 @@ namespace cxxstdio } // namespace cxxstdio -#endif // CXXSTDIO_HPP +#endif // TMWA_IO_CXXSTDIO_HPP diff --git a/src/io/fwd.hpp b/src/io/fwd.hpp index c68c437..9a980c5 100644 --- a/src/io/fwd.hpp +++ b/src/io/fwd.hpp @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. -#include "../common/sanity.hpp" +#include "../sanity.hpp" namespace io diff --git a/src/io/lock.cpp b/src/io/lock.cpp index 7ee4fbe..823b168 100644 --- a/src/io/lock.cpp +++ b/src/io/lock.cpp @@ -23,8 +23,7 @@ #include "../strings/zstring.hpp" -// TODO remove this violation of include order -#include "../common/cxxstdio.hpp" +#include "../io/cxxstdio.hpp" #include "../poison.hpp" diff --git a/src/io/read.cpp b/src/io/read.cpp index 11a0020..146ba81 100644 --- a/src/io/read.cpp +++ b/src/io/read.cpp @@ -25,7 +25,7 @@ #include "../strings/mstring.hpp" #include "../strings/zstring.hpp" -#include "../common/cxxstdio.hpp" +#include "../io/cxxstdio.hpp" #include "../poison.hpp" diff --git a/src/io/read.hpp b/src/io/read.hpp index d5b8c23..47fc055 100644 --- a/src/io/read.hpp +++ b/src/io/read.hpp @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. -#include "../common/sanity.hpp" +#include "../sanity.hpp" #include "../strings/fwd.hpp" diff --git a/src/io/write.hpp b/src/io/write.hpp index f0aa584..18e8209 100644 --- a/src/io/write.hpp +++ b/src/io/write.hpp @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. -#include "../common/sanity.hpp" +#include "../sanity.hpp" #include <cstdarg> diff --git a/src/login/login.cpp b/src/login/login.cpp index b93a698..bd466e1 100644 --- a/src/login/login.cpp +++ b/src/login/login.cpp @@ -20,11 +20,11 @@ #include "../strings/xstring.hpp" #include "../strings/vstring.hpp" +#include "../io/cxxstdio.hpp" #include "../io/lock.hpp" #include "../io/read.hpp" #include "../common/core.hpp" -#include "../common/cxxstdio.hpp" #include "../common/db.hpp" #include "../common/extract.hpp" #include "../common/human_time_diff.hpp" diff --git a/src/map/atcommand.cpp b/src/map/atcommand.cpp index 55596b3..5256121 100644 --- a/src/map/atcommand.cpp +++ b/src/map/atcommand.cpp @@ -10,11 +10,11 @@ #include "../strings/xstring.hpp" #include "../strings/vstring.hpp" +#include "../io/cxxstdio.hpp" #include "../io/read.hpp" #include "../io/write.hpp" #include "../common/core.hpp" -#include "../common/cxxstdio.hpp" #include "../common/extract.hpp" #include "../common/human_time_diff.hpp" #include "../common/mmo.hpp" diff --git a/src/map/battle.cpp b/src/map/battle.cpp index 457c37a..05bacd4 100644 --- a/src/map/battle.cpp +++ b/src/map/battle.cpp @@ -5,9 +5,9 @@ #include "../strings/fstring.hpp" #include "../strings/zstring.hpp" +#include "../io/cxxstdio.hpp" #include "../io/read.hpp" -#include "../common/cxxstdio.hpp" #include "../common/nullpo.hpp" #include "../common/random.hpp" diff --git a/src/map/chrif.cpp b/src/map/chrif.cpp index 8e62e4d..4afccb7 100644 --- a/src/map/chrif.cpp +++ b/src/map/chrif.cpp @@ -7,7 +7,8 @@ #include "../strings/fstring.hpp" #include "../strings/zstring.hpp" -#include "../common/cxxstdio.hpp" +#include "../io/cxxstdio.hpp" + #include "../common/nullpo.hpp" #include "../common/socket.hpp" #include "../common/timer.hpp" diff --git a/src/map/clif.cpp b/src/map/clif.cpp index d4cedc6..5b7c21d 100644 --- a/src/map/clif.cpp +++ b/src/map/clif.cpp @@ -10,9 +10,9 @@ #include "../strings/zstring.hpp" #include "../strings/xstring.hpp" +#include "../io/cxxstdio.hpp" #include "../io/write.hpp" -#include "../common/cxxstdio.hpp" #include "../common/md5calc.hpp" #include "../common/random.hpp" #include "../common/nullpo.hpp" diff --git a/src/map/grfio.cpp b/src/map/grfio.cpp index c486cf4..c5a55f5 100644 --- a/src/map/grfio.cpp +++ b/src/map/grfio.cpp @@ -15,9 +15,9 @@ #include "../strings/mstring.hpp" #include "../strings/fstring.hpp" +#include "../io/cxxstdio.hpp" #include "../io/read.hpp" -#include "../common/cxxstdio.hpp" #include "../common/extract.hpp" #include "../poison.hpp" diff --git a/src/map/intif.cpp b/src/map/intif.cpp index 18415d0..8673aef 100644 --- a/src/map/intif.cpp +++ b/src/map/intif.cpp @@ -7,7 +7,8 @@ #include "../strings/zstring.hpp" #include "../strings/xstring.hpp" -#include "../common/cxxstdio.hpp" +#include "../io/cxxstdio.hpp" + #include "../common/nullpo.hpp" #include "../common/socket.hpp" diff --git a/src/map/itemdb.cpp b/src/map/itemdb.cpp index 5a11aa1..313ff23 100644 --- a/src/map/itemdb.cpp +++ b/src/map/itemdb.cpp @@ -7,9 +7,9 @@ #include "../strings/zstring.hpp" #include "../strings/xstring.hpp" +#include "../io/cxxstdio.hpp" #include "../io/read.hpp" -#include "../common/cxxstdio.hpp" #include "../common/db.hpp" #include "../common/extract.hpp" #include "../common/nullpo.hpp" diff --git a/src/map/magic-expr.cpp b/src/map/magic-expr.cpp index b360cca..acdefc2 100644 --- a/src/map/magic-expr.cpp +++ b/src/map/magic-expr.cpp @@ -10,7 +10,8 @@ #include "../strings/zstring.hpp" #include "../strings/vstring.hpp" -#include "../common/cxxstdio.hpp" +#include "../io/cxxstdio.hpp" + #include "../common/random.hpp" #include "battle.hpp" diff --git a/src/map/magic-interpreter-base.cpp b/src/map/magic-interpreter-base.cpp index e86e86b..0ba145a 100644 --- a/src/map/magic-interpreter-base.cpp +++ b/src/map/magic-interpreter-base.cpp @@ -6,7 +6,8 @@ #include "../strings/fstring.hpp" #include "../strings/xstring.hpp" -#include "../common/cxxstdio.hpp" +#include "../io/cxxstdio.hpp" + #include "../common/timer.hpp" #include "magic-expr.hpp" diff --git a/src/map/magic-interpreter-lexer.lpp b/src/map/magic-interpreter-lexer.lpp index b5a16b2..2b68acf 100644 --- a/src/map/magic-interpreter-lexer.lpp +++ b/src/map/magic-interpreter-lexer.lpp @@ -3,7 +3,7 @@ # #include "magic-interpreter-parser.hpp" -#include "../common/cxxstdio.hpp" +#include "../io/cxxstdio.hpp" #ifdef HEADING # error "what platform is this? please tell me who #defined HEADING" diff --git a/src/map/magic-interpreter-parser.ypp b/src/map/magic-interpreter-parser.ypp index 8a654cd..0657ade 100644 --- a/src/map/magic-interpreter-parser.ypp +++ b/src/map/magic-interpreter-parser.ypp @@ -13,8 +13,9 @@ #include "../strings/fstring.hpp" #include "../strings/zstring.hpp" +#include "../io/cxxstdio.hpp" + #include "../common/const_array.hpp" -#include "../common/cxxstdio.hpp" #include "itemdb.hpp" #include "magic-expr.hpp" diff --git a/src/map/magic-stmt.cpp b/src/map/magic-stmt.cpp index a0e2b7c..682d9bc 100644 --- a/src/map/magic-stmt.cpp +++ b/src/map/magic-stmt.cpp @@ -4,7 +4,8 @@ #include "../strings/zstring.hpp" -#include "../common/cxxstdio.hpp" +#include "../io/cxxstdio.hpp" + #include "../common/random2.hpp" #include "../common/timer.hpp" diff --git a/src/map/magic.cpp b/src/map/magic.cpp index 75a76ae..0602dfa 100644 --- a/src/map/magic.cpp +++ b/src/map/magic.cpp @@ -2,7 +2,7 @@ #include "../strings/xstring.hpp" -#include "../common/cxxstdio.hpp" +#include "../io/cxxstdio.hpp" #include "magic-interpreter.hpp" diff --git a/src/map/map.cpp b/src/map/map.cpp index d259451..137adff 100644 --- a/src/map/map.cpp +++ b/src/map/map.cpp @@ -15,11 +15,11 @@ #include "../strings/xstring.hpp" #include "../strings/vstring.hpp" +#include "../io/cxxstdio.hpp" #include "../io/write.hpp" #include "../io/read.hpp" #include "../common/core.hpp" -#include "../common/cxxstdio.hpp" #include "../common/db.hpp" #include "../common/extract.hpp" #include "../common/random2.hpp" diff --git a/src/map/map.hpp b/src/map/map.hpp index e1f8422..7eeaa8c 100644 --- a/src/map/map.hpp +++ b/src/map/map.hpp @@ -12,7 +12,8 @@ #include "../strings/fstring.hpp" #include "../strings/vstring.hpp" -#include "../common/cxxstdio.hpp" +#include "../io/cxxstdio.hpp" + #include "../common/db.hpp" #include "../common/matrix.hpp" #include "../common/socket.hpp" diff --git a/src/map/mob.cpp b/src/map/mob.cpp index 34374a7..960c58e 100644 --- a/src/map/mob.cpp +++ b/src/map/mob.cpp @@ -11,9 +11,9 @@ #include "../strings/fstring.hpp" #include "../strings/xstring.hpp" +#include "../io/cxxstdio.hpp" #include "../io/read.hpp" -#include "../common/cxxstdio.hpp" #include "../common/extract.hpp" #include "../common/nullpo.hpp" #include "../common/random.hpp" diff --git a/src/map/npc.cpp b/src/map/npc.cpp index e6c7445..f5a1f21 100644 --- a/src/map/npc.cpp +++ b/src/map/npc.cpp @@ -12,9 +12,9 @@ #include "../strings/zstring.hpp" #include "../strings/xstring.hpp" +#include "../io/cxxstdio.hpp" #include "../io/read.hpp" -#include "../common/cxxstdio.hpp" #include "../common/db.hpp" #include "../common/extract.hpp" #include "../common/nullpo.hpp" diff --git a/src/map/party.cpp b/src/map/party.cpp index 0ba251f..9d7cae2 100644 --- a/src/map/party.cpp +++ b/src/map/party.cpp @@ -4,7 +4,8 @@ #include "../strings/xstring.hpp" -#include "../common/cxxstdio.hpp" +#include "../io/cxxstdio.hpp" + #include "../common/db.hpp" #include "../common/nullpo.hpp" #include "../common/socket.hpp" diff --git a/src/map/path.cpp b/src/map/path.cpp index f7fffbe..d66640e 100644 --- a/src/map/path.cpp +++ b/src/map/path.cpp @@ -2,7 +2,8 @@ #include <cassert> -#include "../common/cxxstdio.hpp" +#include "../io/cxxstdio.hpp" + #include "../common/random.hpp" #include "../common/nullpo.hpp" diff --git a/src/map/pc.cpp b/src/map/pc.cpp index 157046f..0b648d1 100644 --- a/src/map/pc.cpp +++ b/src/map/pc.cpp @@ -7,9 +7,9 @@ #include "../strings/fstring.hpp" #include "../strings/zstring.hpp" +#include "../io/cxxstdio.hpp" #include "../io/read.hpp" -#include "../common/cxxstdio.hpp" #include "../common/nullpo.hpp" #include "../common/random.hpp" #include "../common/socket.hpp" diff --git a/src/map/script.cpp b/src/map/script.cpp index f7a87a5..f3635c4 100644 --- a/src/map/script.cpp +++ b/src/map/script.cpp @@ -12,10 +12,10 @@ #include "../strings/zstring.hpp" #include "../strings/xstring.hpp" +#include "../io/cxxstdio.hpp" #include "../io/lock.hpp" #include "../io/read.hpp" -#include "../common/cxxstdio.hpp" #include "../common/db.hpp" #include "../common/extract.hpp" #include "../common/intern-pool.hpp" diff --git a/src/map/skill-pools.cpp b/src/map/skill-pools.cpp index 2774922..31998f8 100644 --- a/src/map/skill-pools.cpp +++ b/src/map/skill-pools.cpp @@ -1,6 +1,6 @@ #include "skill.hpp" -#include "../common/cxxstdio.hpp" +#include "../io/cxxstdio.hpp" #include "battle.hpp" #include "pc.hpp" diff --git a/src/map/skill.cpp b/src/map/skill.cpp index 9187335..3fdd45d 100644 --- a/src/map/skill.cpp +++ b/src/map/skill.cpp @@ -9,9 +9,9 @@ #include "../strings/fstring.hpp" #include "../strings/xstring.hpp" +#include "../io/cxxstdio.hpp" #include "../io/read.hpp" -#include "../common/cxxstdio.hpp" #include "../common/extract.hpp" #include "../common/nullpo.hpp" #include "../common/random.hpp" diff --git a/src/map/tmw.cpp b/src/map/tmw.cpp index d4beef4..9841a75 100644 --- a/src/map/tmw.cpp +++ b/src/map/tmw.cpp @@ -7,7 +7,8 @@ #include "../strings/zstring.hpp" #include "../strings/xstring.hpp" -#include "../common/cxxstdio.hpp" +#include "../io/cxxstdio.hpp" + #include "../common/nullpo.hpp" #include "atcommand.hpp" diff --git a/src/map/trade.cpp b/src/map/trade.cpp index 785a4da..7fc01ae 100644 --- a/src/map/trade.cpp +++ b/src/map/trade.cpp @@ -1,6 +1,7 @@ #include "trade.hpp" -#include "../common/cxxstdio.hpp" +#include "../io/cxxstdio.hpp" + #include "../common/nullpo.hpp" #include "battle.hpp" diff --git a/src/monitor/main.cpp b/src/monitor/main.cpp index b398b97..934e24f 100644 --- a/src/monitor/main.cpp +++ b/src/monitor/main.cpp @@ -19,9 +19,9 @@ #include "../strings/zstring.hpp" #include "../strings/xstring.hpp" +#include "../io/cxxstdio.hpp" #include "../io/read.hpp" -#include "../common/cxxstdio.hpp" #include "../common/utils.hpp" #include "../poison.hpp" diff --git a/src/common/sanity.hpp b/src/sanity.hpp index 3658f9f..d4a8738 100644 --- a/src/common/sanity.hpp +++ b/src/sanity.hpp @@ -1,6 +1,6 @@ -/// return wrappers for unexpected NULL pointers -#ifndef SANITY_HPP -#define SANITY_HPP +/// Keep spatulas out of the build environment +#ifndef TMWA_SANITY_HPP +#define TMWA_SANITY_HPP # ifndef __cplusplus # error "Please compile in C++ mode" @@ -28,7 +28,7 @@ // Known platform dependencies: // endianness for the [RW]FIFO.* macros // possibly, some signal-handling -# error "Unsupported platform use x86 / amd64 only" +# error "Unsupported platform, we use x86 / amd64 only" # endif // not __i386__ -#endif // SANITY_HPP +#endif // TMWA_SANITY_HPP diff --git a/src/strings/fwd.hpp b/src/strings/fwd.hpp index 41abbbb..9d71b5f 100644 --- a/src/strings/fwd.hpp +++ b/src/strings/fwd.hpp @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. -#include "../common/sanity.hpp" +#include "../sanity.hpp" // It is a common mistake to assume that one string class for everything. // Because C++ and TMWA have a C legacy, there are a few more here diff --git a/src/strings/pair.hpp b/src/strings/pair.hpp index 88422be..2c0061a 100644 --- a/src/strings/pair.hpp +++ b/src/strings/pair.hpp @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. -#include "../common/sanity.hpp" +#include "../sanity.hpp" #include <cstring> |