Commit 7ad2c919 authored by Christopher Dykes's avatar Christopher Dykes Committed by Facebook Github Bot 3

Eliminate accidental trigraph in FBString

Summary: `<::` is a trigraph, which, although removed in C++17, MSVC still warns about the sequences (although it doesn't actually intepret them as trigraphs)

Reviewed By: yfeldblum

Differential Revision: D3704382

fbshipit-source-id: b093f854343db01bc166b1cc44763676fdd97a51
parent ddeb302a
......@@ -2441,7 +2441,7 @@ _GLIBCXX_END_NAMESPACE_VERSION
#define FOLLY_FBSTRING_HASH1(T) \
template <> \
struct hash<::folly::basic_fbstring<T>> { \
struct hash< ::folly::basic_fbstring<T>> { \
size_t operator()(const ::folly::basic_fbstring<T>& s) const { \
return ::folly::hash::fnv32_buf(s.data(), s.size() * sizeof(T)); \
} \
......
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