From abd4d55efb340ff1723df8212204114c8d612b20 Mon Sep 17 00:00:00 2001 From: Simon Brand Date: Tue, 24 Oct 2017 09:01:24 +0100 Subject: [PATCH] Guard --- optional.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/optional.hpp b/optional.hpp index 114b13f..023d09b 100644 --- a/optional.hpp +++ b/optional.hpp @@ -11,6 +11,9 @@ // . /// +#ifndef TL_OPTIONAL_HPP +#define TL_OPTIONAL_HPP + #include #include #include @@ -1381,3 +1384,5 @@ template struct hash> { } }; } // namespace std + +#endif