number_u deleted

This commit is contained in:
MihailRis
2024-05-07 18:50:36 +03:00
parent a4c21984d5
commit f2cdd3c4b6
5 changed files with 17 additions and 46 deletions
-2
View File
@@ -13,8 +13,6 @@ using observer_handler = std::shared_ptr<int>;
using integer_t = int64_t;
/// @brief dynamic floating-point type (64 bit floating point)
using number_t = double;
/// @brief dynamic numeric types union (integer and floating-point)
using number_u = std::variant<integer_t, number_t>;
using uint = unsigned int;