Skip to content

Commit 23cc980

Browse files
committed
patching #includes of library headers so they are correctly found
1 parent 523dd65 commit 23cc980

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

include/exodusIIcpp/error.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
#include "fmt/format.h"
77
#include "fmt/printf.h"
8-
#include "exception.h"
8+
#include "exodusIIcpp/exception.h"
99

1010
#define EXODUSIICPP_CHECK_ERROR(err) \
1111
exodusIIcpp::internal::check_error(err, __PRETTY_FUNCTION__, __FILE__, __LINE__)

include/exodusIIcpp/file.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
#include <vector>
77
#include <map>
88
#include <filesystem>
9-
#include "element_block.h"
10-
#include "enums.h"
11-
#include "error.h"
12-
#include "node_set.h"
13-
#include "side_set.h"
9+
#include "exodusIIcpp/element_block.h"
10+
#include "exodusIIcpp/enums.h"
11+
#include "exodusIIcpp/error.h"
12+
#include "exodusIIcpp/node_set.h"
13+
#include "exodusIIcpp/side_set.h"
1414

1515
namespace fs = std::filesystem;
1616

0 commit comments

Comments
 (0)