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 9717275
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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

0 comments on commit 9717275

Please sign in to comment.