Remove "Place holder" comments.

This commit is contained in:
Jean-Baptiste Perrier
2021-01-26 15:45:35 +01:00
parent 15d24308e8
commit af1dfc0d08
2 changed files with 15 additions and 15 deletions

View File

@@ -5,15 +5,15 @@
#if PLATFORM_WINDOWS
#include "Win32/Win32Network.h"
#elif PLATFORM_UWP
#include "Win32/Win32Network.h" // place holder
#include "Win32/Win32Network.h"
#elif PLATFORM_LINUX
#include "Base/NetworkBase.h" // place holder
#include "Base/NetworkBase.h"
#elif PLATFORM_PS4
#include "Base/NetworkBase.h" // place holder
#include "Base/NetworkBase.h"
#elif PLATFORM_XBOX_SCARLETT
#include "Win32/Win32Network.h" // it's probably isn't working
#include "Win32/Win32Network.h"
#elif PLATFORM_ANDROID
#include "Base/NetworkBase.h" // place holder
#include "Base/NetworkBase.h"
#else
#error Missing Network implementation!
#endif

View File

@@ -45,8 +45,8 @@ class Win32Thread;
typedef Win32Thread Thread;
class UWPWindow;
typedef UWPWindow Window;
class NetworkBase; // place holder
typedef NetworkBase Network; // place holder
class NetworkBase;
typedef NetworkBase Network;
#elif PLATFORM_LINUX
@@ -68,8 +68,8 @@ class LinuxThread;
typedef LinuxThread Thread;
class LinuxWindow;
typedef LinuxWindow Window;
class NetworkBase; // place holder
typedef NetworkBase Network; // place holder
class NetworkBase;
typedef NetworkBase Network;
#elif PLATFORM_PS4
@@ -91,8 +91,8 @@ class PS4Thread;
typedef PS4Thread Thread;
class PS4Window;
typedef PS4Window Window;
class NetworkBase; // place holder
typedef NetworkBase Network; // place holder
class NetworkBase;
typedef NetworkBase Network;
#elif PLATFORM_XBOX_SCARLETT
@@ -114,8 +114,8 @@ class Win32Thread;
typedef Win32Thread Thread;
class XboxScarlettWindow;
typedef XboxScarlettWindow Window;
class NetworkBase; // place holder
typedef NetworkBase Network; // place holder
class NetworkBase;
typedef NetworkBase Network;
#elif PLATFORM_ANDROID
@@ -137,8 +137,8 @@ class AndroidThread;
typedef AndroidThread Thread;
class AndroidWindow;
typedef AndroidWindow Window;
class NetworkBase; // place holder
typedef NetworkBase Network; // place holder
class NetworkBase;
typedef NetworkBase Network;
#else