fixing Linux warnings

This commit is contained in:
amerhifi 2019-05-13 11:41:30 -07:00
parent 541aef5e90
commit 8759f028f8
3 changed files with 3 additions and 3 deletions

View file

@ -15,7 +15,7 @@ namespace platform {
class MACOSInstance : public Instance {
public:
bool enumeratePlatform();
bool enumeratePlatform() override;
private:
unsigned int getNumLogicalCores();

View file

@ -15,7 +15,7 @@ namespace platform {
class WINInstance : public Instance {
public:
bool enumeratePlatform();
bool enumeratePlatform() override;
private:
unsigned int getNumLogicalCores();

View file

@ -36,7 +36,7 @@ public:
protected:
std::vector<json> _cpu;
std::vector<json> _memory;
std::vector<json> _gpu;
std::vector<json> _gpu;
std::vector<json> _display;
};