From d37ef901f93171ddbd32328f6c23762fcbe4cd04 Mon Sep 17 00:00:00 2001 From: Trevor Knight Date: Thu, 25 Jan 2024 16:24:24 -0500 Subject: [PATCH] Adds header for string for char[] + string In several places in exceptions.hpp, a string literal is added to a string with the string literal (char[]) on the left side. Without the include, it may get a 'invalid operands' error. --- include/ear/exceptions.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/ear/exceptions.hpp b/include/ear/exceptions.hpp index 75cb6ef..895ba0a 100644 --- a/include/ear/exceptions.hpp +++ b/include/ear/exceptions.hpp @@ -1,5 +1,6 @@ #pragma once #include +#include #include "export.hpp" namespace ear {