mirror of
https://github.com/lubosz/overte.git
synced 2025-04-17 17:26:11 +02:00
removed unecessary using
This commit is contained in:
parent
ba69f0c962
commit
0e6fcf0fe6
3 changed files with 1 additions and 8 deletions
|
@ -12,9 +12,6 @@
|
|||
#include "platform.h"
|
||||
|
||||
namespace platform {
|
||||
|
||||
using namespace nlohmann;
|
||||
|
||||
class MACOSInstance : public Instance {
|
||||
|
||||
public:
|
||||
|
|
|
@ -12,9 +12,6 @@
|
|||
#include "platform.h"
|
||||
|
||||
namespace platform {
|
||||
|
||||
using namespace nlohmann;
|
||||
|
||||
class WINInstance : public Instance {
|
||||
|
||||
public:
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
#include <vector>
|
||||
#include <nlohmann/json.hpp>
|
||||
|
||||
|
||||
namespace platform {
|
||||
using json = nlohmann::json;
|
||||
|
||||
|
@ -39,7 +38,6 @@ protected:
|
|||
std::vector<json*> _memory;
|
||||
std::vector<json*> _gpu;
|
||||
std::vector<json*> _display;
|
||||
|
||||
};
|
||||
|
||||
//Platform level functions
|
||||
|
@ -56,6 +54,7 @@ const json* getGraphics(int index);
|
|||
|
||||
int getNumDisplay();
|
||||
const json* getDisplay(int index);
|
||||
|
||||
|
||||
int getNumMemory();
|
||||
const json* getMemory(int index);
|
||||
|
|
Loading…
Reference in a new issue