Skip to content
Snippets Groups Projects
Commit c07f0889 authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Fix constructor inheritance breaking QtCreator code completion

parent 05868fb9
No related branches found
No related tags found
2 merge requests!188ArMem Updates,!185Clean up interfaces and unneeded code in memory core classes
......@@ -34,8 +34,9 @@ namespace armarx::armem::base::detail
public:
using Base::MemoryContainerBase;
using Base::operator=;
// `using Base::MemoryContainerBase` breaks code completion of QtCreator.
using MemoryContainerBase<std::map<std::string, _ValueT>, _Derived>::MemoryContainerBase;
using MemoryContainerBase<std::map<std::string, _ValueT>, _Derived>::operator=;
/**
* @brief Retrieve an entity.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment