From 5b5aabc6d347ff209c35b2db7250d4caaf9fd643 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 13 Mar 2015 14:48:35 +0200 Subject: Factor string_table into separate file --- build/string-table.txx | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 build/string-table.txx (limited to 'build/string-table.txx') diff --git a/build/string-table.txx b/build/string-table.txx new file mode 100644 index 0000000..67d93c9 --- /dev/null +++ b/build/string-table.txx @@ -0,0 +1,33 @@ +// file : build/string-table.txx -*- C++ -*- +// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC +// license : MIT; see accompanying LICENSE file + +#include // numeric_limits +#include // size_t +#include + +namespace build +{ + template + I string_table:: + insert (const D& d) + { + std::size_t i (vec_.size () + 1); + + // Note: move(d) would be tricky since key still points to it. + // + auto r (map_.emplace ( + key_type (&traits::key (d)), + value_type {static_cast (i), d})); + + if (r.second) + { + assert (i <= std::numeric_limits::max ()); + + r.first->first.p = &traits::key (r.first->second.d); // Update key. + vec_.push_back (r.first); + } + + return r.first->second.i; + } +} -- cgit v1.1