Skip to content
Snippets Groups Projects
Commit a707a6ec authored by Kevin Hitzler's avatar Kevin Hitzler Committed by Raphael Grimm
Browse files

Make error output more useful

parent b37dabb1
No related branches found
No related tags found
Loading
......@@ -74,7 +74,7 @@ namespace armarx::introspection
template<class MemberType>
ClassMemberInfo<CommonBaseT, ClassT>::EntryConfigurator<ClassT> ClassMemberInfo<CommonBaseT, ClassT>::addMemberVariable(MemberType ClassType::* ptr, const std::string& name)
{
ARMARX_CHECK_EQUAL(0, entries.count(name));
ARMARX_CHECK_EQUAL(0, entries.count(name)) << "variable was already added!" << GetKeys(entries);
entries.add(name, Entry(name, ptr));
return entries.at(name);
}
......
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