aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/RegisterBackendCounters.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/profiling/RegisterBackendCounters.hpp')
-rw-r--r--src/profiling/RegisterBackendCounters.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/profiling/RegisterBackendCounters.hpp b/src/profiling/RegisterBackendCounters.hpp
index 34f9f3a3eb..88234df273 100644
--- a/src/profiling/RegisterBackendCounters.hpp
+++ b/src/profiling/RegisterBackendCounters.hpp
@@ -21,7 +21,7 @@ class RegisterBackendCounters : public IRegisterBackendCounters
public:
RegisterBackendCounters(
- uint16_t currentMaxGlobalCounterID, const armnn::BackendId& backendId, IProfilingService& profilingService)
+ uint16_t currentMaxGlobalCounterID, const std::string& backendId, IProfilingService& profilingService)
: m_CurrentMaxGlobalCounterID(currentMaxGlobalCounterID),
m_BackendId(backendId),
m_ProfilingService(profilingService),
@@ -54,7 +54,7 @@ public:
private:
uint16_t m_CurrentMaxGlobalCounterID;
- const armnn::BackendId& m_BackendId;
+ const std::string& m_BackendId;
IProfilingService& m_ProfilingService;
ICounterRegistry& m_CounterDirectory;
};