From 7a5e1a9a9a61416c759ce02a48e600814fd13711 Mon Sep 17 00:00:00 2001 From: Nikolaus Rath Date: Sun, 12 May 2019 11:00:15 +0100 Subject: [PATCH] Fix includes of non-system headers. Fixes: #415. --- example/passthrough_hp.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/passthrough_hp.cc b/example/passthrough_hp.cc index dba8751..974551e 100644 --- a/example/passthrough_hp.cc +++ b/example/passthrough_hp.cc @@ -46,7 +46,7 @@ #define FUSE_USE_VERSION 35 #ifdef HAVE_CONFIG_H -#include +#include "config.h" #endif #ifndef _GNU_SOURCE @@ -73,7 +73,7 @@ #include #include #include -#include +#include "cxxopts.hpp" #include #include #include -- 2.30.2