aboutsummaryrefslogtreecommitdiff
path: root/brep/package
diff options
context:
space:
mode:
Diffstat (limited to 'brep/package')
-rw-r--r--brep/package7
1 files changed, 3 insertions, 4 deletions
diff --git a/brep/package b/brep/package
index a193c16..423002b 100644
--- a/brep/package
+++ b/brep/package
@@ -335,13 +335,12 @@ namespace brep
{
public:
bool conditional;
+ bool buildtime;
string comment;
dependency_alternatives () = default;
-
- explicit
- dependency_alternatives (bool d, string c)
- : conditional (d), comment (move (c)) {}
+ dependency_alternatives (bool d, bool b, string c)
+ : conditional (d), buildtime (b), comment (move (c)) {}
};
using dependencies = vector<dependency_alternatives>;