Skip to content
Snippets Groups Projects
Commit 447ba701 authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Add missing include

parent efb55202
No related branches found
No related tags found
1 merge request!37Feature/language
#ifndef EXCEPTIONS_H #ifndef EXCEPTIONS_HPP
#define EXCEPTIONS_H #define EXCEPTIONS_HPP
#include <stdexcept> #include <stdexcept>
#include <string>
struct IExitError : public std::runtime_error struct IExitError : public std::runtime_error
{ {
...@@ -54,4 +55,4 @@ struct NotImplementedError : IBacktraceError ...@@ -54,4 +55,4 @@ struct NotImplementedError : IBacktraceError
NotImplementedError(std::string_view error_msg); NotImplementedError(std::string_view error_msg);
}; };
#endif /* EXCEPTIONS_H */ #endif // EXCEPTIONS_HPP
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment