mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-21 22:03:11 -07:00
Change RATIONAL_BASE to be inline instead of static
This commit is contained in:
parent
4c8a48f4e4
commit
3e8be642ba
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ namespace CalcEngine
|
|||
{
|
||||
// Default Base/Radix to use for Rational calculations
|
||||
// RatPack calculations currently support up to Base64.
|
||||
static constexpr uint32_t RATIONAL_BASE = 10;
|
||||
inline constexpr uint32_t RATIONAL_BASE = 10;
|
||||
|
||||
class Rational
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue