mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 08:04:01 +02:00
fixing Linux warnings
This commit is contained in:
parent
541aef5e90
commit
8759f028f8
3 changed files with 3 additions and 3 deletions
|
@ -15,7 +15,7 @@ namespace platform {
|
|||
class MACOSInstance : public Instance {
|
||||
|
||||
public:
|
||||
bool enumeratePlatform();
|
||||
bool enumeratePlatform() override;
|
||||
|
||||
private:
|
||||
unsigned int getNumLogicalCores();
|
||||
|
|
|
@ -15,7 +15,7 @@ namespace platform {
|
|||
class WINInstance : public Instance {
|
||||
|
||||
public:
|
||||
bool enumeratePlatform();
|
||||
bool enumeratePlatform() override;
|
||||
|
||||
private:
|
||||
unsigned int getNumLogicalCores();
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue