From bc409bc989641e5c7702c79770e24039ed2f26ab Mon Sep 17 00:00:00 2001 From: Lauchmelder Date: Wed, 24 Nov 2021 15:03:07 +0100 Subject: [PATCH] prettified enum classes --- src/common.hpp | 4 ++-- src/exceptions.hpp | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/common.hpp b/src/common.hpp index 530dcd7..5b2fe2d 100644 --- a/src/common.hpp +++ b/src/common.hpp @@ -24,8 +24,8 @@ struct Instruction; struct Keyword; struct Runtime; -std::string resolve_TokenType_str(enum class TokenType); -std::string resolve_ValueType_str(enum class ValueType); +std::string resolve_TokenType_str(TokenType); +std::string resolve_ValueType_str(ValueType); #endif //BISCUIT_INTERPRETER_COMMON_HPP diff --git a/src/exceptions.hpp b/src/exceptions.hpp index a6a4ea5..8ac5dba 100644 --- a/src/exceptions.hpp +++ b/src/exceptions.hpp @@ -29,9 +29,9 @@ struct WrongArgumentCountExcept : public std::exception struct WrongTokenExcept : public std::exception { - enum class TokenType expected, got; + TokenType expected, got; std::string keyword_name, token_str; - inline WrongTokenExcept(const std::string& _keyword_name, const std::string& _token_str, enum class TokenType _expected, enum class TokenType _got) + inline WrongTokenExcept(const std::string& _keyword_name, const std::string& _token_str, TokenType _expected, TokenType _got) : expected(_expected), got(_got), keyword_name(_keyword_name), token_str(_token_str) {} }; @@ -39,9 +39,9 @@ struct WrongTokenExcept : public std::exception // Runtime errors struct TypeErrorExcept : public std::exception { - enum class ValueType expected, got; + ValueType expected, got; std::string token_str; - inline TypeErrorExcept(const std::string& _token_str, enum class ValueType _expected, enum class ValueType _got) + inline TypeErrorExcept(const std::string& _token_str, ValueType _expected, ValueType _got) : expected(_expected), got(_got), token_str(_token_str) {} };