summaryrefslogtreecommitdiff
path: root/src/components/include/utils/data_accessor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/include/utils/data_accessor.h')
-rw-r--r--src/components/include/utils/data_accessor.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/include/utils/data_accessor.h b/src/components/include/utils/data_accessor.h
index 6d0fb0ed68..b828f513eb 100644
--- a/src/components/include/utils/data_accessor.h
+++ b/src/components/include/utils/data_accessor.h
@@ -34,7 +34,6 @@
#include <iostream>
#include "utils/lock.h"
-#include "utils/shared_ptr.h"
// This class is for thread-safe const access to data
template <class T>
@@ -67,7 +66,7 @@ class DataAccessor {
const T& data_;
// Require that the lock lives at least as long as the DataAccessor
const std::shared_ptr<sync_primitives::Lock> lock_;
- utils::SharedPtr<uint32_t> counter_;
+ std::shared_ptr<uint32_t> counter_;
};
#endif // SRC_COMPONENTS_INCLUDE_UTILS_DATA_ACCESSOR_H_