From ab71371e04ab0e85960e6e6b76f8f80dcb2ca1eb Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Wed, 19 Feb 2025 17:04:43 -0600 Subject: [PATCH] updated build system --- support/src/utils/error.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/src/utils/error.cpp b/support/src/utils/error.cpp index 54b4c41f..350a5fe2 100644 --- a/support/src/utils/error.cpp +++ b/support/src/utils/error.cpp @@ -116,7 +116,7 @@ auto create_error_message(std::vector items) -> std::string { auto create_error_message(std::string_view function_name, std::vector items) -> std::string { - items.insert(std::next(items.begin()), function_name); + items.insert(items.begin(), function_name); return create_error_message(items); }