Skip to content

Commit

Permalink
Refactor enums
Browse files Browse the repository at this point in the history
  • Loading branch information
fintarin committed Feb 4, 2024
1 parent cc0176d commit 32b5606
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/fintamath/exceptions/InvalidInputException.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class InvalidInputBinaryOperatorException final : public InvalidInputException {

class InvalidInputUnaryOperatorException final : public InvalidInputException {
public:
enum class Type {
enum class Type : uint8_t {
Prefix,
Postfix,
};
Expand Down
2 changes: 1 addition & 1 deletion include/fintamath/exceptions/UndefinedException.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class UndefinedBinaryOperatorException final : public UndefinedException {

class UndefinedUnaryOperatorException final : public UndefinedException {
public:
enum class Type {
enum class Type : uint8_t {
Prefix,
Postfix,
};
Expand Down

0 comments on commit 32b5606

Please sign in to comment.