diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2024-11-10 15:52:55 +0100 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2024-11-12 17:33:47 +0100 |
commit | 168a2a14668b6a26446bc152d58b2e16f467fe0e (patch) | |
tree | 83eb40dc258820d0ff2d5694c978b430a2a95398 /drivers/unix/ip_unix.h | |
parent | caff0ff591ed63234474c46a6fd868661aa8ea01 (diff) | |
download | redot-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.h | 6 |
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 |