Re: [webkit-dev] Forward.h's Vector

2017-09-15 Thread JF Bastien
Having not heard any objections, here’s a patch which does this: https://bugs.webkit.org/show_bug.cgi?id=176984 > On Sep 13, 2017, at 12:49, JF Bastien wrote: > > > >> On Sep 13, 2017, at 11:07, Maciej Stachowiak > > wr

Re: [webkit-dev] Forward.h's Vector

2017-09-13 Thread JF Bastien
> On Sep 13, 2017, at 11:07, Maciej Stachowiak wrote: > > > >> On Sep 13, 2017, at 8:11 AM, JF Bastien > > wrote: >> >> Hello WebCritters, >> >> I’m moving some code around, and one particular header I have is included >> everywhere in JSC so I’d like it to be l

Re: [webkit-dev] Forward.h's Vector

2017-09-13 Thread Maciej Stachowiak
> On Sep 13, 2017, at 8:11 AM, JF Bastien wrote: > > Hello WebCritters, > > I’m moving some code around, and one particular header I have is included > everywhere in JSC so I’d like it to be lightweight and include as few other > headers as possible. It unfortunately uses WTF::Vector, but it

Re: [webkit-dev] Forward.h's Vector

2017-09-13 Thread Myles C. Maxfield
> On Sep 13, 2017, at 8:11 AM, JF Bastien wrote: > > Hello WebCritters, > > I’m moving some code around, and one particular header I have is included > everywhere in JSC so I’d like it to be lightweight and include as few other > headers as possible. It unfortunately uses WTF::Vector, but it

[webkit-dev] Forward.h's Vector

2017-09-13 Thread JF Bastien
Hello WebCritters, I’m moving some code around, and one particular header I have is included everywhere in JSC so I’d like it to be lightweight and include as few other headers as possible. It unfortunately uses WTF::Vector, but it only does so as a pointer: void ohNoes(Vector*); It seems lik