diff options
Diffstat (limited to 'build/name')
-rw-r--r-- | build/name | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -19,6 +19,9 @@ namespace build // without a type and directory can be used to represent any text. // A name with directory and empty value represents a directory. // + // If pair is true, then this name and the next in the list form + // a pair. + // struct name { explicit @@ -33,6 +36,7 @@ namespace build std::string type; path dir; std::string value; + bool pair {false}; }; typedef std::vector<name> names; |