Re: Firefox and clang-cl

2017-08-20 Thread Zachary Turner via dev-platform
On Monday, August 14, 2017 at 1:47:02 PM UTC-7, Hans Wennborg wrote: > Yes, we want to do LTO+PGO builds eventually. (In particular, we'd > like to use ThinLTO for more manageable build times.) That requires > switching to using the lld linker, which in turn is requires adding > support for writing

New string types: nsAutoStringN<> and nsAutoCStringN<>

2017-08-20 Thread Nicholas Nethercote
Hi, For a long time we have had types nsAutoString and nsAutoCString which are strings with 64 chars of inline storage. They are good for holding short strings, most often on the stack, because they avoid the need to heap allocate a char buffer. I recently landed patches (bug 1386103) that introd