mirror of
https://github.com/pocoproject/poco.git
synced 2025-12-10 00:56:03 +01:00
enh(Foundation): modernised header files (override, using, nullptr, ...)
This commit is contained in:
@@ -56,13 +56,10 @@ public:
|
||||
{
|
||||
}
|
||||
|
||||
~UniqueExpireCache()
|
||||
{
|
||||
}
|
||||
~UniqueExpireCache() = default;
|
||||
|
||||
private:
|
||||
UniqueExpireCache(const UniqueExpireCache& aCache);
|
||||
UniqueExpireCache& operator = (const UniqueExpireCache& aCache);
|
||||
UniqueExpireCache(const UniqueExpireCache& aCache) = delete;
|
||||
UniqueExpireCache& operator=(const UniqueExpireCache& aCache) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user