From 0d82ea167363258b1b8c9c73f04453dbbc334334 Mon Sep 17 00:00:00 2001 From: Werner <26710260+GuilhermeWerner@users.noreply.github.com> Date: Sat, 25 Dec 2021 08:39:36 -0300 Subject: [PATCH] Update Types.rs --- Source/Types.rs | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/Source/Types.rs b/Source/Types.rs index 97cbb40..fada5a4 100644 --- a/Source/Types.rs +++ b/Source/Types.rs @@ -3,22 +3,3 @@ pub type Half = [Byte; 2]; pub type Word = [Byte; 4]; pub type DWord = [Byte; 8]; pub type QWord = [Byte; 16]; - -pub enum PrimitiveType { - Byte, - Bool, - Char, - Int8, - Int16, - Int32, - Int64, - Int128, - UInt8, - UInt16, - UInt32, - UInt64, - UInt128, - Float32, - Float64, - String, -}