<div class="gmail_quote">FWIW, I've not checked to see whether it could just be replaced with abort, or no body at all. I'll look into it when I can. However...</div><div class="gmail_quote"><br></div><div class="gmail_quote">
On Sat, Jan 28, 2012 at 10:38 PM, Nico Weber <span dir="ltr"><<a href="mailto:thakis@chromium.org">thakis@chromium.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div id=":51y">You mean like<br>
<div class="im"><br>
template <typename T><br>
inline T Invalid() {<br>
</div>  return *static_cast<volatile typename remove_reference<T>::type*>(0);<br></div></blockquote><div><br></div><div>The error below can be addressed quite simply:</div><div><br></div><div>return *const_cast<typename remove_reference<T>::type&>(static_cast<volatile typename remove_reference<T>::type*>(0));</div>
<div><br></div><div>You might think that this could just be 'const_cast<T&>(...)' but while this is equivalent according to the standard thanks to reference collapsing, we found that some compilers choked on it spectacularly. =/ I can't remember whether it was an older MSVC, or the GCC in an older version of xcode.</div>
</div>