aboutsummaryrefslogtreecommitdiff
path: root/libbutl/string-table.mxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-06-03 12:55:14 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-06-03 12:55:14 +0300
commit2a7a93bb9e6f828ea0d4b59b400fbb2e16657c9c (patch)
treecbf988364a2daab7e72f7e2f6d23f6442caf347e /libbutl/string-table.mxx
parent57a9066812b06262265594eac7c62c394f51e947 (diff)
Rename traits alias to traits_type for basic_path, basic_url, and string_table class templates
Diffstat (limited to 'libbutl/string-table.mxx')
-rw-r--r--libbutl/string-table.mxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbutl/string-table.mxx b/libbutl/string-table.mxx
index e684567..5807921 100644
--- a/libbutl/string-table.mxx
+++ b/libbutl/string-table.mxx
@@ -104,7 +104,7 @@ LIBBUTL_MODEXPORT namespace butl
using key_type = butl::map_key<std::string>;
using value_type = string_table_element<I, D>;
using map_type = std::unordered_map<key_type, value_type>;
- using traits = string_table_traits<D>; // @@ TODO: rename traits_type;
+ using traits_type = string_table_traits<D>;
map_type map_;
std::vector<typename map_type::const_iterator> vec_;