aboutsummaryrefslogtreecommitdiff
path: root/build/prefix_map.txx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-01-15 11:02:15 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-01-15 11:02:15 +0200
commitc59ce78f409db8bb53042380903c8ece8b8fbd28 (patch)
tree2a1ec6c6aaab3e6b8c00b80d07d0386ff14838ba /build/prefix_map.txx
parentc2339b07fb683355c6a6155ec312b1616167614e (diff)
Allow specifying prefix_map delimiter as template argument
Diffstat (limited to 'build/prefix_map.txx')
-rw-r--r--build/prefix_map.txx4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/prefix_map.txx b/build/prefix_map.txx
index 17a8ca0..91f8e0a 100644
--- a/build/prefix_map.txx
+++ b/build/prefix_map.txx
@@ -5,7 +5,7 @@
namespace build
{
template <typename M>
- auto prefix_map_impl<M>::
+ auto prefix_map_common<M>::
find (const key_type& k) -> std::pair<iterator, iterator>
{
std::pair<iterator, iterator> r;
@@ -23,7 +23,7 @@ namespace build
}
template <typename M>
- auto prefix_map_impl<M>::
+ auto prefix_map_common<M>::
find (const key_type& k) const -> std::pair<const_iterator, const_iterator>
{
std::pair<const_iterator, const_iterator> r;