Skip to content

Commit

Permalink
[NFC] eliminate macro redefinition errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ChuanqiXu9 committed Aug 14, 2023
1 parent 0ffc686 commit 199f52f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion async_simple/executors/SimpleIOExecutor.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

#include "async_simple/IOExecutor.h"

#if not __has_include(<libaio.h>)
#if !__has_include(<libaio.h>) && !defined(ASYNC_SIMPLE_HAS_NOT_AIO)
#define ASYNC_SIMPLE_HAS_NOT_AIO
#endif

Expand Down

0 comments on commit 199f52f

Please sign in to comment.