diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-08-14 15:48:34 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-08-14 15:48:34 +0200 |
commit | 47bf5cd6a167730ee06a1c7cffeae6540f67dde0 (patch) | |
tree | 7c9c07d33b41be75d1a5d6ec40c153beda2a2a19 /build/operation.cxx | |
parent | f62ff2e840fd92a03b4a3298de938d426f8b5c7a (diff) |
Rework meta/operation registration
We now have global tables for meta/operation. Plus each can
then be enabled on the per-project basis.
Diffstat (limited to 'build/operation.cxx')
-rw-r--r-- | build/operation.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/build/operation.cxx b/build/operation.cxx index 694ad1c..607658f 100644 --- a/build/operation.cxx +++ b/build/operation.cxx @@ -228,4 +228,9 @@ namespace build nullptr, nullptr }; + + // Tables. + // + string_table<meta_operation_id> meta_operation_table; + string_table<operation_id> operation_table; } |