diff --git a/src/shared/akoptional.h b/src/shared/akoptional.h index 6de7133fe..24187249b 100644 --- a/src/shared/akoptional.h +++ b/src/shared/akoptional.h @@ -1,36 +1,37 @@ /* Copyright (C) 2018 Daniel Vrátil This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef AKOPTIONAL_H #define AKOPTIONAL_H #ifdef __has_include #if __has_include() #include - #elif __has_include() + #endif + #if !defined(__cpp_lib_optional) && __has_include() #include namespace std { using namespace experimental; } #else #error Compiler does not support std::optional or std::experimental::optional #endif #else #error Compiler does not support __has_include #endif #endif // AKOPTIONAL_H