Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
pbalty committed Aug 10, 2023
2 parents cf9f3b5 + f968d08 commit b28ece4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/flups.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#define FLUPS_H

#include "flups_interface.h"
#include "mpi.h"
#include <mpi.h>

#ifdef __cplusplus
#include <cmath>
Expand All @@ -19,7 +19,7 @@ extern "C" {
#define MAX(a, b) std::max(a, b)
#else

#include "stdlib.h"
#include <stdlib.h>
#define MAX(a, b) a > b ? a : b
#endif

Expand Down

0 comments on commit b28ece4

Please sign in to comment.