diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-01-31 14:45:10 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-01-31 14:45:10 +0100 |
| commit | 0269e7f53f44d8e62ec35280d4adde7aa3ef1c6c (patch) | |
| tree | b7e6dedd349242d1adc542c6c42c540009fbcc94 | |
| parent | eb2046d6cc73540f540b30e94bf4593ddf24100e (diff) | |
Fix: stupid CxxKitRT
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
| -rw-r--r-- | Private/Source/CxxKitRT.cxx | 27 |
1 files changed, 2 insertions, 25 deletions
diff --git a/Private/Source/CxxKitRT.cxx b/Private/Source/CxxKitRT.cxx index 3544c543..cc2d477d 100644 --- a/Private/Source/CxxKitRT.cxx +++ b/Private/Source/CxxKitRT.cxx @@ -15,29 +15,6 @@ using namespace HCore; // unimplemented _HintTell void _HintTell(_HintMessage* ppMsg, _HintId* pId) { - switch (*pId) { - case kErrorExecutable: { - const char* msg = "CodeManager doesn't recognize this executable."; - rt_copy_memory((const voidPtr)msg, *ppMsg, string_length(msg)); - break; - } - case kErrorExecutableLib: { - const char* msg = "CodeManager doesn't recognize this library."; - rt_copy_memory((const voidPtr)msg, *ppMsg, string_length(msg)); - break; - } - case kErrorFileNotFound: { - const char* msg = "FileManager doesn't find this file."; - rt_copy_memory((const voidPtr)msg, *ppMsg, string_length(msg)); - break; - } - case kErrorNoNetwork: { - const char* msg = - "NetworkManager doesn't detect any WiFi/Ethernet connection."; - rt_copy_memory((const voidPtr)msg, *ppMsg, string_length(msg)); - break; - } - default: - break; - } + (void)ppMsg; + (void)pId; } |
