Skip to content

Commit

Permalink
Minor fixup for platform check with WIN32 macro
Browse files Browse the repository at this point in the history
  • Loading branch information
subhacom committed Jun 12, 2024
1 parent 6d0b9e8 commit d6bc7ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion basecode/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include <time.h>
#include <math.h>
#include <queue>
#if defined(WIN32)
#if defined(_WIN32)
#include "getopt.h"
#else
#include <unistd.h> // for getopt
Expand Down
2 changes: 1 addition & 1 deletion shell/Shell.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include "../msg/OneToOneMsg.h"
#include "../msg/OneToAllMsg.h"
#include "../msg/SparseMsg.h"
#if !defined(WIN32)
#if !defined(_WIN32)
#include "../builtins/SocketStreamer.h"
#endif
#include "../builtins/Streamer.h"
Expand Down

0 comments on commit d6bc7ff

Please sign in to comment.