diff options
Diffstat (limited to 'src/hash_map.h')
-rw-r--r-- | src/hash_map.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/hash_map.h b/src/hash_map.h index 45a83a9..dd63c01 100644 --- a/src/hash_map.h +++ b/src/hash_map.h @@ -12,6 +12,9 @@ // See the License for the specific language governing permissions and // limitations under the License. +#ifndef NINJA_MAP_H_ +#define NINJA_MAP_H_ + #include <ext/hash_map> using __gnu_cxx::hash_map; @@ -24,3 +27,5 @@ struct hash<std::string> { } }; } + +#endif // NINJA_MAP_H_ |