From e1d2e3b63934c1e193429f1d6c4e04abc0e85d56 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 26 Feb 2015 15:40:29 +0200 Subject: Support for scope parents, initial variable support --- build/prefix-map.txx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'build/prefix-map.txx') diff --git a/build/prefix-map.txx b/build/prefix-map.txx index 0da911d..a8bf028 100644 --- a/build/prefix-map.txx +++ b/build/prefix-map.txx @@ -6,7 +6,7 @@ namespace build { template auto prefix_map_common:: - find (const key_type& k) -> std::pair + find_prefix (const key_type& k) -> std::pair { std::pair r; r.first = this->lower_bound (k); @@ -24,7 +24,8 @@ namespace build template auto prefix_map_common:: - find (const key_type& k) const -> std::pair + find_prefix (const key_type& k) const -> + std::pair { std::pair r; r.first = this->lower_bound (k); -- cgit v1.1