aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/version/module.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'libbuild2/version/module.hxx')
-rw-r--r--libbuild2/version/module.hxx7
1 files changed, 2 insertions, 5 deletions
diff --git a/libbuild2/version/module.hxx b/libbuild2/version/module.hxx
index bfa7d8c..8549e03 100644
--- a/libbuild2/version/module.hxx
+++ b/libbuild2/version/module.hxx
@@ -4,8 +4,6 @@
#ifndef LIBBUILD2_VERSION_MODULE_HXX
#define LIBBUILD2_VERSION_MODULE_HXX
-#include <map>
-
#include <libbuild2/types.hxx>
#include <libbuild2/utility.hxx>
@@ -24,9 +22,10 @@ namespace build2
{
package_name name;
string constraint;
+ bool buildtime;
};
- using dependencies = std::map<string, dependency>;
+ using dependencies = map<string, dependency>;
struct module: build2::module
{
@@ -44,8 +43,6 @@ namespace build2
dependencies_type dependencies;
- bool dist_uncommitted = false;
-
module (const project_name& p,
butl::standard_version v,
bool c,