Skip to content

Commit

Permalink
Fix include ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
davschneller committed Nov 13, 2024
1 parent bc0feb6 commit f33976e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion async/as/MPIBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
#ifndef ASYNC_AS_MPIBASE_H
#define ASYNC_AS_MPIBASE_H

#include <cstdint>
#include <algorithm>
#include <cstdint>
#include <mpi.h>

#include <cassert>
Expand Down
4 changes: 2 additions & 2 deletions async/as/Thread.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
#define ASYNC_AS_THREAD_H

#include "async/as/Pin.h"
#include "utils/logger.h"
#include "async/as/Base.h"
#include "async/ExecInfo.h"
#include "async/as/Base.h"
#include "utils/logger.h"
#include <cassert>
#include <cstring>
#include <sched.h>
Expand Down
2 changes: 1 addition & 1 deletion tests/as/MPI.t.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
* @author Sebastian Rettenberger <[email protected]>
*/

#include <cstddef>
#include "async/Config.h"
#include "async/as/MPIScheduler.h"
#include <array>
#include <cstddef>
#include <mpi.h>

#include <pthread.h>
Expand Down

0 comments on commit f33976e

Please sign in to comment.