mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-22 06:13:14 -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
|
// Default Base/Radix to use for Rational calculations
|
||||||
// RatPack calculations currently support up to Base64.
|
// RatPack calculations currently support up to Base64.
|
||||||
static constexpr uint32_t RATIONAL_BASE = 10;
|
inline constexpr uint32_t RATIONAL_BASE = 10;
|
||||||
|
|
||||||
class Rational
|
class Rational
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue