From 028f0a264536533a40411e747bc56bdb95cb68b7 Mon Sep 17 00:00:00 2001 From: Klaus Aehlig Date: Fri, 6 Jul 2018 01:38:18 -0700 Subject: [PATCH] blaze_util_freebsd.cc: include path.h explicitly ...as this file uses blaze_util::JoinPath. Apparently, until recently, that header file was pulled in indirectly, so that this wasn't detected until now. Nevertheless, the header files for functions used directly should also be included explicitly anyway. Change-Id: Id181480c6ec7fd146ce8b7b00980319f13c3f518 PiperOrigin-RevId: 203445044 --- src/main/cpp/blaze_util_freebsd.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/cpp/blaze_util_freebsd.cc b/src/main/cpp/blaze_util_freebsd.cc index 0d196827d87a8b..7cca0a0973a9cc 100644 --- a/src/main/cpp/blaze_util_freebsd.cc +++ b/src/main/cpp/blaze_util_freebsd.cc @@ -33,6 +33,7 @@ #include "src/main/cpp/util/exit_code.h" #include "src/main/cpp/util/file.h" #include "src/main/cpp/util/logging.h" +#include "src/main/cpp/util/path.h" #include "src/main/cpp/util/port.h" #include "src/main/cpp/util/strings.h"