diff options
| -rw-r--r-- | platform/linux/platform_linux.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/platform/linux/platform_linux.cpp b/platform/linux/platform_linux.cpp index 107ce892..e6f3ecb4 100644 --- a/platform/linux/platform_linux.cpp +++ b/platform/linux/platform_linux.cpp @@ -30,6 +30,11 @@ public: if (cc) SetSystemCallConvention(cc); } + + virtual bool GetFallbackEnabled() override + { + return false; + } }; class LinuxPpc32Platform: public Platform @@ -90,6 +95,11 @@ public: if (cc) SetSystemCallConvention(cc); } + + virtual bool GetFallbackEnabled() override + { + return false; + } }; @@ -136,6 +146,11 @@ public: if (cc) SetSystemCallConvention(cc); } + + virtual bool GetFallbackEnabled() override + { + return false; + } }; @@ -159,6 +174,11 @@ public: if (cc) SetSystemCallConvention(cc); } + + virtual bool GetFallbackEnabled() override + { + return false; + } }; |
