aboutsummaryrefslogtreecommitdiff
path: root/build/rule
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-06-18 12:25:02 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-06-18 12:25:02 +0200
commit4cda4b89c16932f02e04c5019a71b659ccf821e6 (patch)
tree8fbaddb1c64a53c9c871c1a96a99ec64490d222a /build/rule
parent5cb5b09b198932a0d3bd985fd52fd9fbcb1c2af5 (diff)
Move prefix-map from build2 to libbutl
Diffstat (limited to 'build/rule')
-rw-r--r--build/rule5
1 files changed, 3 insertions, 2 deletions
diff --git a/build/rule b/build/rule
index 32e8c66..04d3650 100644
--- a/build/rule
+++ b/build/rule
@@ -10,9 +10,10 @@
#include <functional> // reference_wrapper
#include <unordered_map>
+#include <butl/prefix-map>
+
#include <build/target>
#include <build/operation>
-#include <build/prefix-map>
namespace build
{
@@ -28,7 +29,7 @@ namespace build
using target_rule_map = std::unordered_map<
std::type_index,
- prefix_multimap<std::string, std::reference_wrapper<rule>, '.'>>;
+ butl::prefix_multimap<std::string, std::reference_wrapper<rule>, '.'>>;
using operation_rule_map = std::unordered_map<operation_id, target_rule_map>;