summaryrefslogtreecommitdiffstats
path: root/drivers/unix/ip_unix.h
diff options
context:
space:
mode:
authorFabio Alessandrelli <fabio.alessandrelli@gmail.com>2024-11-10 15:52:55 +0100
committerFabio Alessandrelli <fabio.alessandrelli@gmail.com>2024-11-12 17:33:47 +0100
commit168a2a14668b6a26446bc152d58b2e16f467fe0e (patch)
tree83eb40dc258820d0ff2d5694c978b430a2a95398 /drivers/unix/ip_unix.h
parentcaff0ff591ed63234474c46a6fd868661aa8ea01 (diff)
downloadredot-engine-168a2a14668b6a26446bc152d58b2e16f467fe0e.tar.gz
[Net] Split Unix/Windows IP implementation
Diffstat (limited to 'drivers/unix/ip_unix.h')
-rw-r--r--drivers/unix/ip_unix.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/unix/ip_unix.h b/drivers/unix/ip_unix.h
index 274b7c561e..7e496629ef 100644
--- a/drivers/unix/ip_unix.h
+++ b/drivers/unix/ip_unix.h
@@ -31,9 +31,9 @@
#ifndef IP_UNIX_H
#define IP_UNIX_H
-#include "core/io/ip.h"
+#if defined(UNIX_ENABLED)
-#if defined(UNIX_ENABLED) || defined(WINDOWS_ENABLED)
+#include "core/io/ip.h"
class IPUnix : public IP {
GDCLASS(IPUnix, IP);
@@ -49,6 +49,6 @@ public:
IPUnix();
};
-#endif
+#endif // UNIX_ENABLED
#endif // IP_UNIX_H