aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/config/utility.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2022-06-03 10:34:18 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2022-06-03 10:34:18 +0200
commit66438e8e5f6fcf77ef6d4c32fda000168b37cd7a (patch)
tree14d35b5fafe66417e910f39bb6dbd1d85a3b42a5 /libbuild2/config/utility.hxx
parent3ec24f8b32f44cb928900edfd4310361a87b6801 (diff)
Move config::variable_visibility to separate types.hxx header
Diffstat (limited to 'libbuild2/config/utility.hxx')
-rw-r--r--libbuild2/config/utility.hxx10
1 files changed, 2 insertions, 8 deletions
diff --git a/libbuild2/config/utility.hxx b/libbuild2/config/utility.hxx
index 050339a..b998e3c 100644
--- a/libbuild2/config/utility.hxx
+++ b/libbuild2/config/utility.hxx
@@ -11,6 +11,8 @@
#include <libbuild2/scope.hxx>
#include <libbuild2/variable.hxx>
+#include <libbuild2/config/types.hxx>
+
#include <libbuild2/export.hxx>
namespace build2
@@ -507,14 +509,6 @@ namespace build2
//
// Throws invalid_argument if the passed variable is not config.*.
//
- enum class variable_origin
- {
- undefined, // Undefined.
- default_, // Default value from the config directive.
- buildfile, // Value from a buildfile, normally config.build.
- override_ // Value from a command line override.
- };
-
LIBBUILD2_SYMEXPORT pair<variable_origin, lookup>
origin (const scope& rs, const string& name);