mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Tidy up
This commit is contained in:
parent
1059f7b022
commit
fc0f6b1f2f
27 changed files with 12 additions and 71 deletions
|
|
@ -130,10 +130,6 @@ BigInteger& BigInteger::operator= (BigInteger&& other) noexcept
|
|||
return *this;
|
||||
}
|
||||
|
||||
BigInteger::~BigInteger()
|
||||
{
|
||||
}
|
||||
|
||||
void BigInteger::swapWith (BigInteger& other) noexcept
|
||||
{
|
||||
for (int i = 0; i < numPreallocatedInts; ++i)
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ public:
|
|||
BigInteger& operator= (BigInteger&&) noexcept;
|
||||
|
||||
/** Destructor. */
|
||||
~BigInteger();
|
||||
~BigInteger() = default;
|
||||
|
||||
//==============================================================================
|
||||
/** Copies another BigInteger onto this one. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue