Skip to content

Commit

Permalink
πŸ› Fix stringify macro
Browse files Browse the repository at this point in the history
  • Loading branch information
yhs0602 committed Dec 27, 2024
1 parent 4f4b5b5 commit 4fac6ad
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/cpp/ipc.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#include "ipc.h"
#define MACRO_STRINGIFY(x) STRINGIFY(x)
#define STRINGIFY(x) #x
#define MACRO_STRINGIFY(x) #x

#ifdef __APPLE__
#include "ipc_apple.h"
Expand Down Expand Up @@ -54,4 +53,3 @@ PYBIND11_MODULE(craftground, m) {
m.attr("__version__") = "dev";
#endif
}

0 comments on commit 4fac6ad

Please sign in to comment.