Created
May 1, 2017 16:16
-
-
Save kantoniak/7be9e18b6da206709f1b9a63fdea9472 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef OPTIONAL | |
#define OPTIONAL | |
#if __has_include(<optional>) | |
# include <optional> | |
#else | |
# include <experimental/optional> | |
namespace std { | |
template<typename T> | |
using optional = std::experimental::optional<T>; | |
} | |
#endif | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment