Skip to content

Commit

Permalink
Removed redundant DataType enum
Browse files Browse the repository at this point in the history
  • Loading branch information
kpluas21 committed May 9, 2023
1 parent 4153bf8 commit de18f04
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions Data_Structures/LinkC/src/LinkC.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,6 @@ static const char* const ERROR_STRINGS[] = {
"E_UNKNOWN_ERROR",
};

/**
* @enum DataType
* @brief Constants used to label the data type of the elements in our linked list
*/
typedef enum DataType {
INT,
CHAR,
FLOAT,
DOUBLE,
STRING,

}DataType;

//Forward declaration
typedef struct LinkCNode LinkCNode;

Expand Down

0 comments on commit de18f04

Please sign in to comment.