diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-06-21 11:59:04 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-06-21 11:59:04 +0200 |
commit | 195de65a84864cf5931325eeb2356f7d98155055 (patch) | |
tree | 4ba33483d9032acb3de82547d5e9e0307a3c8353 /libbuild2/config | |
parent | d822a0ae2c9fe312ad7a31e829ce2951be6a3ea0 (diff) |
Add support for automatic generation of symbol exporting .def file
Diffstat (limited to 'libbuild2/config')
-rw-r--r-- | libbuild2/config/operation.hxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libbuild2/config/operation.hxx b/libbuild2/config/operation.hxx index ded3c8b..9e2a91e 100644 --- a/libbuild2/config/operation.hxx +++ b/libbuild2/config/operation.hxx @@ -4,8 +4,6 @@ #ifndef LIBBUILD2_CONFIG_OPERATION_HXX #define LIBBUILD2_CONFIG_OPERATION_HXX -#include <set> - #include <libbuild2/types.hxx> #include <libbuild2/utility.hxx> @@ -29,7 +27,7 @@ namespace build2 // Configuration exporting. // - using project_set = std::set<const scope*>; // Pointers for comparison. + using project_set = set<const scope*>; // Pointers for comparison. // If inherit is false, then don't rely on inheritance from outer scopes // (used for config.config.save/$config.save()). In this case the already |