From 8edae83905d0a4eb1472d7b9def7d07195ced5a6 Mon Sep 17 00:00:00 2001 From: Leandro Lupori Date: Fri, 10 May 2019 17:05:40 +0000 Subject: [PATCH] Fix build issue with clang 8.0.1 The algorithm header is needed to use std::remove_if --- usr.bin/dtc/fdt.hh | 1 + 1 file changed, 1 insertion(+) diff --git a/usr.bin/dtc/fdt.hh b/usr.bin/dtc/fdt.hh index 2e414e145c7d..86c0dcede5e4 100644 --- a/usr.bin/dtc/fdt.hh +++ b/usr.bin/dtc/fdt.hh @@ -34,6 +34,7 @@ #ifndef _FDT_HH_ #define _FDT_HH_ +#include #include #include #include