From 9d818423031083f227a5e872826ed8c2d6e14a0f Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 27 Apr 2015 12:57:39 +0200 Subject: Add support for specifying library link order --- build/utility | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'build/utility') diff --git a/build/utility b/build/utility index 01ecd95..064a95f 100644 --- a/build/utility +++ b/build/utility @@ -38,6 +38,35 @@ namespace build bool operator() (const P& x, const P& y) const {return *x < *y;} }; + // Simple optional class template while waiting for std::optional. + // + template + 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)) ... -- cgit v1.1