svn commit: r347445 - head/usr.bin/dtc

Leandro Lupori luporl at FreeBSD.org
Fri May 10 17:05:41 UTC 2019


Author: luporl
Date: Fri May 10 17:05:40 2019
New Revision: 347445
URL: https://svnweb.freebsd.org/changeset/base/347445

Log:
  Fix build issue with clang 8.0.1
  
  The algorithm header is needed to use std::remove_if

Modified:
  head/usr.bin/dtc/fdt.hh

Modified: head/usr.bin/dtc/fdt.hh
==============================================================================
--- head/usr.bin/dtc/fdt.hh	Fri May 10 16:58:05 2019	(r347444)
+++ head/usr.bin/dtc/fdt.hh	Fri May 10 17:05:40 2019	(r347445)
@@ -34,6 +34,7 @@
 
 #ifndef _FDT_HH_
 #define _FDT_HH_
+#include <algorithm>
 #include <unordered_map>
 #include <unordered_set>
 #include <memory>


More information about the svn-src-head mailing list