aboutsummaryrefslogtreecommitdiff
path: root/libbutl/string-table.txx
diff options
context:
space:
mode:
Diffstat (limited to 'libbutl/string-table.txx')
-rw-r--r--libbutl/string-table.txx7
1 files changed, 3 insertions, 4 deletions
diff --git a/libbutl/string-table.txx b/libbutl/string-table.txx
index 3ee710a..77079b2 100644
--- a/libbutl/string-table.txx
+++ b/libbutl/string-table.txx
@@ -12,15 +12,14 @@ namespace butl
// Note: move(d) would be tricky since the key still points to it.
//
- auto r (map_.emplace (
- key_type (&traits::key (d)),
- value_type {static_cast<I> (i), d}));
+ auto r (map_.emplace (key_type (&traits_type::key (d)),
+ value_type {static_cast<I> (i), d}));
if (r.second)
{
assert (i <= std::numeric_limits<I>::max ());
- r.first->first.p = &traits::key (r.first->second.d); // Update key.
+ r.first->first.p = &traits_type::key (r.first->second.d); // Update key.
vec_.push_back (r.first);
}