This commit is contained in:
Simon Brand
2017-10-24 09:01:24 +01:00
parent 71ad0bfc69
commit abd4d55efb

View File

@@ -11,6 +11,9 @@
// <http://creativecommons.org/publicdomain/zero/1.0/>.
///
#ifndef TL_OPTIONAL_HPP
#define TL_OPTIONAL_HPP
#include <exception>
#include <functional>
#include <new>
@@ -1381,3 +1384,5 @@ template <class T> struct hash<tl::optional<T>> {
}
};
} // namespace std
#endif