Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 10 May 2019 17:05:41 +0000 (UTC)
From:      Leandro Lupori <luporl@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r347445 - head/usr.bin/dtc
Message-ID:  <201905101705.x4AH5fMN098550@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905101705.x4AH5fMN098550>