diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-02-26 15:40:29 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-02-26 15:40:29 +0200 |
commit | e1d2e3b63934c1e193429f1d6c4e04abc0e85d56 (patch) | |
tree | ff542da6cc5d7d1b8202b5ce9cd3573211024b94 /build/prefix-map | |
parent | cd9a4ea692ba87aa03a80489bf03736e713722c7 (diff) |
Support for scope parents, initial variable support
Diffstat (limited to 'build/prefix-map')
-rw-r--r-- | build/prefix-map | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/prefix-map b/build/prefix-map index 1b00337..d98c842 100644 --- a/build/prefix-map +++ b/build/prefix-map @@ -108,10 +108,10 @@ namespace build : map_type (std::move (init), compare_type (delimiter)) {} std::pair<iterator, iterator> - find (const key_type&); + find_prefix (const key_type&); std::pair<const_iterator, const_iterator> - find (const key_type&) const; + find_prefix (const key_type&) const; }; template <typename M, typename prefix_map_common<M>::char_type D = 0> |