enh(Foundation): modernised header files (override, using, nullptr, ...)

This commit is contained in:
Matej Kenda
2025-02-10 14:52:52 +01:00
parent 9e4e039c04
commit e7687d4bba
184 changed files with 1487 additions and 1797 deletions

View File

@@ -29,7 +29,7 @@ namespace Poco {
class Foundation_API EnvironmentImpl
{
public:
typedef UInt8 NodeId[6]; /// Ethernet address.
using NodeId = UInt8[6]; /// Ethernet address.
static std::string getImpl(const std::string& name);
static bool hasImpl(const std::string& name);
@@ -43,7 +43,7 @@ public:
static unsigned processorCountImpl();
private:
typedef std::map<std::string, std::string> StringMap;
using StringMap = std::map<std::string, std::string>;
static StringMap _map;
static FastMutex _mutex;