diff --git a/sol/optional.hpp b/sol/optional.hpp index ec2e41c0..ff28ce91 100644 --- a/sol/optional.hpp +++ b/sol/optional.hpp @@ -25,7 +25,7 @@ #if __cplusplus > 201402L #include #else -#include "Optional/optional.hpp" +#include "../Optional/optional.hpp" #endif // C++ 14 namespace sol { @@ -34,7 +34,7 @@ namespace sol { template using optional = sol::optional; using nullopt_t = std::nullopt_t; -constexpr nullopt_t nullopt = std::experimental::nullopt; +constexpr nullopt_t nullopt = std::nullopt; #else #endif // C++ 14 }