From d09940daf0a393bce606c290a3d2ac4f016fc933 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Constantin=20F=C3=BCrst?= Date: Sun, 26 Nov 2023 13:55:19 +0100 Subject: [PATCH] restructure includes in error.hpp --- benchmarks/error.hpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/benchmarks/error.hpp b/benchmarks/error.hpp index 4c083e3..045b6e7 100644 --- a/benchmarks/error.hpp +++ b/benchmarks/error.hpp @@ -1,6 +1,9 @@ -#include +#pragma once + #include +#include + inline std::ostream& operator<<(std::ostream& strm, const dml::status_code code) { switch(code) { case dml::status_code::ok: strm << "[ok]"; break;