aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/CommandHandlerRegistry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/profiling/CommandHandlerRegistry.cpp')
-rw-r--r--src/profiling/CommandHandlerRegistry.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/profiling/CommandHandlerRegistry.cpp b/src/profiling/CommandHandlerRegistry.cpp
index d392db0534..97313475ff 100644
--- a/src/profiling/CommandHandlerRegistry.cpp
+++ b/src/profiling/CommandHandlerRegistry.cpp
@@ -8,6 +8,12 @@
#include <boost/assert.hpp>
#include <boost/log/trivial.hpp>
+namespace armnn
+{
+
+namespace profiling
+{
+
void CommandHandlerRegistry::RegisterFunctor(CommandHandlerFunctor* functor, uint32_t packetId, uint32_t version)
{
BOOST_ASSERT_MSG(functor, "Provided functor should not be a nullptr.");
@@ -27,3 +33,7 @@ CommandHandlerFunctor* CommandHandlerRegistry::GetFunctor(uint32_t packetId, uin
return registry.at(key);
}
+
+} // namespace profiling
+
+} // namespace armnn