From 447ba701a1c0d47af92c71bd579c00c15f263933 Mon Sep 17 00:00:00 2001
From: Stephane Del Pino <stephane.delpino44@gmail.com>
Date: Thu, 28 May 2020 08:44:03 +0200
Subject: [PATCH] Add missing include

---
 src/utils/Exceptions.hpp | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/utils/Exceptions.hpp b/src/utils/Exceptions.hpp
index 2b7906dfe..eb229198b 100644
--- a/src/utils/Exceptions.hpp
+++ b/src/utils/Exceptions.hpp
@@ -1,7 +1,8 @@
-#ifndef EXCEPTIONS_H
-#define EXCEPTIONS_H
+#ifndef EXCEPTIONS_HPP
+#define EXCEPTIONS_HPP
 
 #include <stdexcept>
+#include <string>
 
 struct IExitError : public std::runtime_error
 {
@@ -54,4 +55,4 @@ struct NotImplementedError : IBacktraceError
   NotImplementedError(std::string_view error_msg);
 };
 
-#endif /* EXCEPTIONS_H */
+#endif   // EXCEPTIONS_HPP
-- 
GitLab