Removes Conan build step, adds documentation to dictionary.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-09-26 10:47:19 +02:00
parent dbf6fbc1db
commit 78d4513a4d
2 changed files with 3 additions and 19 deletions

View File

@@ -12,7 +12,9 @@ namespace ArbUt {
using const_iterator = typename std::unordered_map<KeyT, ValueT>::const_iterator;
public:
/// @brief The type used for the indexer of the dictionary.
typedef KeyT keyType;
/// @brief The type used for the value in the dictionary.
typedef ValueT valueType;
Dictionary() : _map() {}