Commit 94247d4c authored by Mark Williams's avatar Mark Williams Committed by Facebook Github Bot

Disable a literal-operator extension for icc

Summary: icc doesn't support it.

Reviewed By: yfeldblum

Differential Revision: D10116547

fbshipit-source-id: 1ed522bd373ab30507f713d855ef02027ce90a91
parent 360bc186
......@@ -3011,7 +3011,7 @@ inline namespace {
constexpr const std::size_t& npos = detail::fixedstring::FixedStringBase::npos;
} // namespace
#if defined(__GNUC__)
#if defined(__GNUC__) && !defined(__ICC)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wpragmas"
#pragma GCC diagnostic ignored "-Wgnu-string-literal-operator-template"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment