search for: 79f14da

Displaying 2 results from an estimated 2 matches for "79f14da".

2014 Aug 22
2
[LLVMdev] Addressing const reference in ArrayRef
...s, though (if we could easily gather the number of >> instances of this - I'm not sure of the easiest way to do that, given >> the build system likes to stop after it sees an error). > > diff --git a/include/llvm/ADT/ArrayRef.h b/include/llvm/ADT/ArrayRef.h > index 0351cf5..79f14da 100644 > --- a/include/llvm/ADT/ArrayRef.h > +++ b/include/llvm/ADT/ArrayRef.h > @@ -68,7 +68,7 @@ namespace llvm { > /*implicit*/ ArrayRef(NoneType) : Data(nullptr), Length(0) {} > > /// Construct an ArrayRef from a single element. > - /*implicit*/ ArrayRef(const...
2014 Aug 22
4
[LLVMdev] Addressing const reference in ArrayRef
On Fri, Aug 22, 2014 at 10:16 AM, Duncan P. N. Exon Smith <dexonsmith at apple.com> wrote: >> On 2014-Aug-21, at 10:39, David Blaikie <dblaikie at gmail.com> wrote: >> >> On Thu, Aug 21, 2014 at 10:34 AM, Reid Kleckner <rnk at google.com> wrote: >>> Is there some way we can get lifetime extension of temporaries to kick in >>> here? >>