diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-12-03 14:37:22 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-12-03 14:37:22 +0200 |
commit | 29f8159583d2b02efa2afeaa58082f57222c943d (patch) | |
tree | 1fa520de084c6c0dacc8af6525b58b294f1e9eae /build/variable | |
parent | 772b1e013bb0068d7347d0bbe2ff73c67358ee1b (diff) |
Add ability for module to remember that it is unconfigured
A module can set and then check the config.*.configured special variable
to false.
Diffstat (limited to 'build/variable')
-rw-r--r-- | build/variable | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/build/variable b/build/variable index 5d0b175..51d748d 100644 --- a/build/variable +++ b/build/variable @@ -119,6 +119,8 @@ namespace build bool empty () const {return state_ == state_type::empty;} explicit operator bool () const {return !null ();} + bool operator== (std::nullptr_t) const {return null ();} + bool operator!= (std::nullptr_t) const {return !null ();} // Raw data read interface. // |