<div dir="ltr">It wouldn't fix the build with libstdc++4.8 because their type_traits header does not define is_trivially_constructible, although it is part of C++11.</div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, May 26, 2016 at 7:12 PM, Zachary Turner via llvm-commits <span dir="ltr"><<a href="mailto:llvm-commits@lists.llvm.org" target="_blank">llvm-commits@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Author: zturner<br>
Date: Thu May 26 21:12:35 2016<br>
New Revision: 270954<br>
<br>
URL: <a href="http://llvm.org/viewvc/llvm-project?rev=270954&view=rev" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project?rev=270954&view=rev</a><br>
Log:<br>
[codeview] #include missing header breaking builds.<br>
<br>
Modified:<br>
    llvm/trunk/include/llvm/DebugInfo/CodeView/StreamArray.h<br>
<br>
Modified: llvm/trunk/include/llvm/DebugInfo/CodeView/StreamArray.h<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/DebugInfo/CodeView/StreamArray.h?rev=270954&r1=270953&r2=270954&view=diff" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/DebugInfo/CodeView/StreamArray.h?rev=270954&r1=270953&r2=270954&view=diff</a><br>
==============================================================================<br>
--- llvm/trunk/include/llvm/DebugInfo/CodeView/StreamArray.h (original)<br>
+++ llvm/trunk/include/llvm/DebugInfo/CodeView/StreamArray.h Thu May 26 21:12:35 2016<br>
@@ -13,6 +13,7 @@<br>
 #include "llvm/DebugInfo/CodeView/StreamRef.h"<br>
<br>
 #include <functional><br>
+#include <type_traits><br>
<br>
 namespace llvm {<br>
 namespace codeview {<br>
<br>
<br>
_______________________________________________<br>
llvm-commits mailing list<br>
<a href="mailto:llvm-commits@lists.llvm.org">llvm-commits@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits</a><br>
</blockquote></div><br></div>