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/test/script/parser.hxx | |
parent | d822a0ae2c9fe312ad7a31e829ce2951be6a3ea0 (diff) |
Add support for automatic generation of symbol exporting .def file
Diffstat (limited to 'libbuild2/test/script/parser.hxx')
-rw-r--r-- | libbuild2/test/script/parser.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libbuild2/test/script/parser.hxx b/libbuild2/test/script/parser.hxx index f118ad3..3b008aa 100644 --- a/libbuild2/test/script/parser.hxx +++ b/libbuild2/test/script/parser.hxx @@ -4,7 +4,6 @@ #ifndef LIBBUILD2_TEST_SCRIPT_PARSER_HXX #define LIBBUILD2_TEST_SCRIPT_PARSER_HXX -#include <set> #include <unordered_map> #include <libbuild2/types.hxx> @@ -132,7 +131,7 @@ namespace build2 // Pre-parse state. // using id_map = std::unordered_map<string, location>; - using include_set = std::set<path>; + using include_set = set<path>; group* group_; id_map* id_map_; |