<div dir="ltr">Thanks. I<div class="gmail_extra"><br><div class="gmail_quote">On Sat, Nov 28, 2015 at 11:44 AM, Benjamin Kramer <span dir="ltr"><<a href="mailto:benny.kra@gmail.com" target="_blank" class="cremed">benny.kra@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On Sat, Nov 28, 2015 at 5:14 PM, Diego Novillo via llvm-dev<br>
<<a href="mailto:llvm-dev@lists.llvm.org" class="cremed">llvm-dev@lists.llvm.org</a>> wrote:<br>
><br>
> I need to build a Twine with a double value, so I was using std::to_string,<br>
> but I'm getting "error: 'to_string' is not a member of 'std'" from a windows<br>
> buildbot.  What's the canonical way to create a Twine() out of a double?<br>
<br>
</span>via raw_ostream. Create a new raw_string_ostream or<br>
raw_svector_ostream, << the double into it and take the string. I<br>
don't think we have a more convenient way for that currently and<br>
to_string is still not universally available.<br></blockquote><div><br></div><div>Thanks.  I suppose there's no easy way to format them?  I tried the standard io manipulators, but they don't seem to be supported in raw streams.  By default double values are emitted in scientific notation. I need to format them as percentage values.</div></div></div></div>