Fixed macOS/clang compile.

This commit is contained in:
Casey Langen 2017-02-08 22:26:20 -08:00
parent 24c9ee8232
commit 4c0f48fb9f
3 changed files with 3 additions and 2 deletions

View File

@ -35,6 +35,7 @@
#pragma once
#include <core/sdk/IMetadataMap.h>
#include <string>
#include <unordered_map>
namespace musik { namespace core {
@ -65,7 +66,7 @@ namespace musik { namespace core {
private:
unsigned long long id;
std::string type, description;
std::map<std::string, std::string> metadata;
std::unordered_map<std::string, std::string> metadata;
};
using MetadataMapPtr = std::shared_ptr<MetadataMap>;

View File

@ -36,7 +36,6 @@
#include "MetadataMapList.h"
using namespace musik::core;
using namespace musik::core::db;
using namespace musik::core::sdk;
namespace {

View File

@ -35,6 +35,7 @@
#pragma once
#include "IMetadataMap.h"
#include <stddef.h>
namespace musik { namespace core { namespace sdk {