Add some missing header inclusions

This commit is contained in:
Thomas Goyne 2015-12-03 09:05:16 -08:00
parent 853658b3fc
commit 473028c153
3 changed files with 6 additions and 3 deletions

View File

@ -19,6 +19,7 @@
#ifndef REALM_INDEX_SET_HPP
#define REALM_INDEX_SET_HPP
#include <cstdlib>
#include <vector>
namespace realm {

View File

@ -19,6 +19,7 @@
#ifndef REALM_SCHEMA_HPP
#define REALM_SCHEMA_HPP
#include <string>
#include <vector>
namespace realm {

View File

@ -19,12 +19,13 @@
#ifndef REALM_REALM_HPP
#define REALM_REALM_HPP
#include "object_store.hpp"
#include <memory>
#include <mutex>
#include <thread>
#include <vector>
#include "object_store.hpp"
namespace realm {
class ClientHistory;
class Realm;
@ -166,7 +167,7 @@ namespace realm {
std::runtime_error(std::move(message)), m_kind(kind), m_path(std::move(path)) {}
Kind kind() const { return m_kind; }
const std::string& path() const { return m_path; }
private:
Kind m_kind;
std::string m_path;