Skip to content
Snippets Groups Projects
Commit 15981502 authored by Marco Clemencic's avatar Marco Clemencic Committed by Valentin Volkl
Browse files

Apply 1 suggestion(s) to 1 file(s)

parent 4061d4b0
No related branches found
No related tags found
1 merge request!1404Workaround for missing std::source_location in apple-clang
......@@ -31,7 +31,7 @@ namespace Gaudi::PluginService::Details {
using std::source_location;
}
#elif __cplusplus >= 201402L && __has_include( <experimental/source_location> )
#elif __cplusplus >= 201402L && !defined( __clang__ ) && __GNUC__ >= 8
# include <experimental/source_location>
namespace Gaudi::PluginService::Details {
using std::experimental::source_location;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment