diff options
author | Loïc Blot <nerzhul@users.noreply.github.com> | 2017-08-18 19:25:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-18 19:25:07 +0200 |
commit | fd3afbced5410639325e730d5710b8b5039b320e (patch) | |
tree | 72e7059aa256706062b9ce2cd9ec5b0df76f5ede /src/inventory.h | |
parent | c42753338924bb29c61081c9f269772f89bcd808 (diff) | |
download | minetest-fd3afbced5410639325e730d5710b8b5039b320e.tar.gz minetest-fd3afbced5410639325e730d5710b8b5039b320e.tar.bz2 minetest-fd3afbced5410639325e730d5710b8b5039b320e.zip |
Optimize headers (part 2) (#6272)
* Optimize headers (part 2)
* less debug.h in headers
* less remoteplayer.h for everybody
* Cleanup (part 2)
* camera.h: mesh.h
* mapgen.h: mapnode.h
* serverenvironment.h: mapblock.h
* nodedef.h: shader.h
Diffstat (limited to 'src/inventory.h')
-rw-r--r-- | src/inventory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inventory.h b/src/inventory.h index aff0ce20f..459228d3e 100644 --- a/src/inventory.h +++ b/src/inventory.h @@ -19,7 +19,6 @@ with this program; if not, write to the Free Software Foundation, Inc., #pragma once -#include "debug.h" #include "itemdef.h" #include "irrlichttypes.h" #include "itemstackmetadata.h" @@ -27,6 +26,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include <ostream> #include <string> #include <vector> +#include <cassert> struct ToolCapabilities; |