mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-09 23:34:20 +00:00
Build: Add -Wdeprecated to recommended flags and fix new warnings
This commit is contained in:
parent
fb1f94767d
commit
1d1d743b9f
23 changed files with 19 additions and 76 deletions
|
|
@ -44,10 +44,6 @@ RSAKey::RSAKey (const String& s)
|
|||
}
|
||||
}
|
||||
|
||||
RSAKey::~RSAKey()
|
||||
{
|
||||
}
|
||||
|
||||
bool RSAKey::operator== (const RSAKey& other) const noexcept
|
||||
{
|
||||
return part1 == other.part1 && part2 == other.part2;
|
||||
|
|
|
|||
|
|
@ -107,9 +107,6 @@ public:
|
|||
*/
|
||||
explicit RSAKey (const String& stringRepresentation);
|
||||
|
||||
/** Destructor. */
|
||||
~RSAKey();
|
||||
|
||||
bool operator== (const RSAKey& other) const noexcept;
|
||||
bool operator!= (const RSAKey& other) const noexcept;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue