summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2023-07-11 13:51:06 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2023-07-11 13:51:06 +0200
commit8a7ade121cb421c97ced9e7bb2a3eb0fa8959e80 (patch)
tree6617410eeacd40db9178cae23c995ce84759a10f /src/core
parent4bdf0315b9d65f8169029df65839049695cd17f5 (diff)
c++,core: Fixed minor mistype from a previous commit
Diffstat (limited to 'src/core')
-rw-r--r--src/core/error.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/error.cpp b/src/core/error.cpp
index 52af76f..80ae52b 100644
--- a/src/core/error.cpp
+++ b/src/core/error.cpp
@@ -18,7 +18,7 @@ error::error(error &&error)
const std::string_view error::get_category() const {
auto& reg = impl::get_error_registry();
- auto eov = reg.search_error_category(error_code_);
+ auto eov = reg.search_category(error_code_);
SAW_ASSERT(eov.is_value()){
return "Error category not found. Report this error to the forstio maintainer";
}