From 8572d7bed1ce76b5df95d2d661510f24be97ab43 Mon Sep 17 00:00:00 2001 From: Nils Wentzell Date: Tue, 1 Sep 2020 14:53:41 -0400 Subject: [PATCH] Minor adjustment in header inclusions to work around osx clang 9.0.1 pragma once issue --- c++/mpi/string.hpp | 2 +- c++/mpi/vector.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/c++/mpi/string.hpp b/c++/mpi/string.hpp index 43e4c75..9ff338d 100644 --- a/c++/mpi/string.hpp +++ b/c++/mpi/string.hpp @@ -13,7 +13,7 @@ // limitations under the License. #pragma once -#include "./mpi.hpp" +#include "mpi.hpp" #include namespace mpi { diff --git a/c++/mpi/vector.hpp b/c++/mpi/vector.hpp index d5443a0..4f8dc15 100644 --- a/c++/mpi/vector.hpp +++ b/c++/mpi/vector.hpp @@ -13,7 +13,7 @@ // limitations under the License. #pragma once -#include "./mpi.hpp" +#include "mpi.hpp" #include namespace mpi {