removed unecessary using

This commit is contained in:
amerhifi 2019-05-10 12:24:41 -07:00
parent ba69f0c962
commit 0e6fcf0fe6
3 changed files with 1 additions and 8 deletions

View file

@ -12,9 +12,6 @@
#include "platform.h"
namespace platform {
using namespace nlohmann;
class MACOSInstance : public Instance {
public:

View file

@ -12,9 +12,6 @@
#include "platform.h"
namespace platform {
using namespace nlohmann;
class WINInstance : public Instance {
public:

View file

@ -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);