From a0290c315a4ccca8c269535591e3f1823fc9505d Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sat, 9 Feb 2019 04:29:32 +0000 Subject: [PATCH] [ox/std] Add missing pragma once to HashMap header --- deps/ox/src/ox/std/hashmap.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/deps/ox/src/ox/std/hashmap.hpp b/deps/ox/src/ox/std/hashmap.hpp index 336598aa..e7393aa4 100644 --- a/deps/ox/src/ox/std/hashmap.hpp +++ b/deps/ox/src/ox/std/hashmap.hpp @@ -6,6 +6,8 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +#pragma once + #include "string.hpp" #include "vector.hpp"