We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96ed02d commit ed368baCopy full SHA for ed368ba
llvm/include/llvm/ADT/StringRef.h
@@ -78,7 +78,7 @@ namespace llvm {
78
#if __cplusplus > 201402L
79
return std::char_traits<char>::length(Str);
80
#elif __has_builtin(__builtin_strlen) || defined(__GNUC__) || \
81
- (defined(_MSC_VER) && _MSC_VER >= 1920)
+ (defined(_MSC_VER) && _MSC_VER >= 1916)
82
return __builtin_strlen(Str);
83
#else
84
const char *Begin = Str;
0 commit comments