aboutsummaryrefslogtreecommitdiff
path: root/src/object_identifier.cpp
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-06-11 22:03:46 +0200
committerHampusM <hampus@hampusmat.com>2022-06-11 22:03:46 +0200
commit77d97c914a157037b6729d0f3b0fb265aacf4741 (patch)
tree60b4e9463f1d36450129bf518b79e1d9ae7fa970 /src/object_identifier.cpp
parent203db8ffe8d4ee82ca126926232f4d4de21b7aec (diff)
refactor: clean up container API
Diffstat (limited to 'src/object_identifier.cpp')
-rw-r--r--src/object_identifier.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/object_identifier.cpp b/src/object_identifier.cpp
index a743271..44ca1b3 100644
--- a/src/object_identifier.cpp
+++ b/src/object_identifier.cpp
@@ -1,10 +1,10 @@
-#include "yacppdic/object_identifier.hpp"
+#include "yacppdic/detail/internal/object_identifier.hpp"
#include "yacppdic/detail/internal/hash.hpp"
#include <functional>
-namespace yacppdic
+namespace yacppdic::internal
{
ObjectIdentifier::ObjectIdentifier(const std::type_info &type_info) noexcept
@@ -44,5 +44,5 @@ auto ObjectIdentifier::tag() const noexcept -> std::string_view
return _tag;
}
-} // namespace yacppdic
+} // namespace yacppdic::internal