aboutsummaryrefslogtreecommitdiff
path: root/build/utility
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-06-18 11:41:46 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-06-18 11:41:46 +0200
commit6434d616da5d75577d142e20e0f9fa430bd625df (patch)
treee9ad77473aa651d44a6fd31a7b7d23eabfac5a0e /build/utility
parent89ea9c8401d9e1b79977c6556b81b2eb4159ef59 (diff)
Use optional from libbutl
Diffstat (limited to 'build/utility')
-rw-r--r--build/utility29
1 files changed, 0 insertions, 29 deletions
diff --git a/build/utility b/build/utility
index db8e94c..87a0e44 100644
--- a/build/utility
+++ b/build/utility
@@ -38,35 +38,6 @@ namespace build
bool operator() (const P& x, const P& y) const {return *x < *y;}
};
- // Simple optional class template while waiting for std::optional.
- //
- template <typename T>
- class optional
- {
- public:
- typedef T value_type;
-
- optional (): null_ (true) {}
- optional (const T& v): value_ (v), null_ (false) {}
- optional& operator= (const T& v) {value_ = v; null_ = false; return *this;}
-
- T& value () {return value_;}
- const T& value () const {return value_;}
-
- T* operator-> () {return &value_;}
- const T* operator-> () const {return &value_;}
-
- T& operator* () {return value_;}
- const T& operator* () const {return value_;}
-
- explicit operator bool () const {return !null_;}
-
- private:
- T value_;
- bool null_;
- };
-
-
// Support for reverse iteration using range-based for-loop:
//
// for (... : reverse_iterate (x)) ...