search for: 0world

Displaying 2 results from an estimated 2 matches for "0world".

Did you mean: world
2016 Nov 29
2
RFC: Constructing StringRefs at compile time
...f_literal > >> constexpr StringRef Strings[] = {LIT("a"), LIT("b"), LIT("c")}; > > > > Why bother with the UDL? > > #define LIT(x) StringRef((x), sizeof(x)-1) > > > > There is subtlety though, it changes the result for: LIT(“hello\0world”). > > — > Mehdi > > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20161129/5a923756/attachment.html>
2016 Nov 29
4
RFC: Constructing StringRefs at compile time
On 29 November 2016 at 17:38, Zachary Turner <zturner at google.com> wrote: > I see, but I looked over your proposed implementation from earlier in the > thread, and if I'm not mistaken I see this: That's a different suggestion. > That said, what did you think about my other proposal of the complicated UDL > with macro? > > #define LIT(x) x_string_ref_literal >