From 09dd11ddf800898c00ecb04a65fb5cd10fb481fa Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Wed, 8 May 2024 12:32:41 +0200 Subject: MHR-23: :boom: changes, reworked project tree. Signed-off-by: Amlal El Mahrouss --- Private/Source/Variant.cxx | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 Private/Source/Variant.cxx (limited to 'Private/Source/Variant.cxx') diff --git a/Private/Source/Variant.cxx b/Private/Source/Variant.cxx deleted file mode 100644 index 2741db45..00000000 --- a/Private/Source/Variant.cxx +++ /dev/null @@ -1,29 +0,0 @@ -/* ------------------------------------------- - - Copyright Mahrouss Logic - -------------------------------------------- */ - -#include - -namespace NewOS -{ - const Char* Variant::ToString() - { - if (fPtr == nullptr) - { - return ("Memory:{Nullptr}"); - } - - switch (fKind) - { - case VariantKind::kString: - return ("Class:{String}"); - case VariantKind::kPointer: - return ("Memory:{Pointer}"); - default: - return ("Memory:{Undefined}"); - } - } - -} // namespace NewOS -- cgit v1.2.3