Commit bebe69e7 authored by Yedidya Feldblum's avatar Yedidya Feldblum Committed by Facebook Github Bot

Drop workaround for clang-3.6 in Range ctor

Summary: [Folly] Drop workaround for clang-3.6 in `Range` ctor.

Reviewed By: gkmhub, Orvid

Differential Revision: D16945307

fbshipit-source-id: d70d7560375d0c020b19fbac227767605459a834
parent 24cde640
...@@ -188,9 +188,7 @@ class Range { ...@@ -188,9 +188,7 @@ class Range {
// Works only for random-access iterators // Works only for random-access iterators
constexpr Range(Iter start, size_t size) : b_(start), e_(start + size) {} constexpr Range(Iter start, size_t size) : b_(start), e_(start + size) {}
#if !__clang__ || __CLANG_PREREQ(3, 7) // Clang 3.6 crashes on this line
/* implicit */ Range(std::nullptr_t) = delete; /* implicit */ Range(std::nullptr_t) = delete;
#endif
constexpr /* implicit */ Range(Iter str) constexpr /* implicit */ Range(Iter str)
: b_(str), e_(str + constexpr_strlen(str)) { : b_(str), e_(str + constexpr_strlen(str)) {
......
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