summaryrefslogtreecommitdiff
path: root/src/buildtool/logging/log_level.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildtool/logging/log_level.hpp')
-rw-r--r--src/buildtool/logging/log_level.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buildtool/logging/log_level.hpp b/src/buildtool/logging/log_level.hpp
index 1902e960..bbc599b9 100644
--- a/src/buildtool/logging/log_level.hpp
+++ b/src/buildtool/logging/log_level.hpp
@@ -20,7 +20,7 @@
#include <string>
#include <type_traits>
-#include <gsl-lite/gsl-lite.hpp>
+#include <gsl/gsl>
enum class LogLevel {
Error, ///< Error messages, fatal errors
@@ -76,7 +76,7 @@ constexpr auto kLastLogLevel = LogLevel::Trace;
case LogLevel::Trace:
return "TRACE";
}
- gsl_Ensures(false); // unreachable
+ Ensures(false); // unreachable
}
#endif // INCLUDED_SRC_BUILDTOOL_LOGGING_LOG_LEVEL_HPP