Skip to content

Commit

Permalink
Minor adjustment in header inclusions to work around osx clang 9.0.1 …
Browse files Browse the repository at this point in the history
…pragma once issue
  • Loading branch information
Wentzell committed Sep 1, 2020
1 parent 31a807d commit 8572d7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion c++/mpi/string.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// limitations under the License.

#pragma once
#include "./mpi.hpp"
#include "mpi.hpp"
#include <string>

namespace mpi {
Expand Down
2 changes: 1 addition & 1 deletion c++/mpi/vector.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// limitations under the License.

#pragma once
#include "./mpi.hpp"
#include "mpi.hpp"
#include <vector>

namespace mpi {
Expand Down

0 comments on commit 8572d7b

Please sign in to comment.