search for: rl200187

Displaying 1 result from an estimated 1 matches for "rl200187".

2016 Nov 24
3
RFC: Constructing StringRefs at compile time
...containing StringRefs. Creating constexpr StringRefs isn't trivial as strlen isn't portably constexpr and std::char_traits<char>::length is only constexpr in C++17. Alp Toker tried to create constexpr StringRefs for strings literals by subclassing StringRef: https://reviews.llvm.org/rL200187 This is a verbose change where needed at string literal call sites. Mehdi AMINI tried to add a constexpr constructor for string literals by making the constructor from const char * explicit: https://reviews.llvm.org/D25639 This is a verbose change at every non-literal call site. This only works wi...