From 99c974c141a74e245281538ea7567b6d919d61e4 Mon Sep 17 00:00:00 2001 From: Lynix Date: Fri, 15 Dec 2017 00:19:45 +0100 Subject: [PATCH] Fix compilation --- include/Nazara/Math/OrientedBox.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Nazara/Math/OrientedBox.inl b/include/Nazara/Math/OrientedBox.inl index fb335f992..92ebada1d 100644 --- a/include/Nazara/Math/OrientedBox.inl +++ b/include/Nazara/Math/OrientedBox.inl @@ -329,7 +329,7 @@ namespace Nz ss << "Index out of range: (" << i << " >= " << BoxCorner_Max << ")"; NazaraError(ss); - throw std::out_of_range(ss.ToString()); + throw std::out_of_range(ss.ToString().ToStdString()); } #endif