Commit 03d6e7d6 authored by Haydn Trigg's avatar Haydn Trigg
Browse files

Removed boost requirement from memory.h (detail)

Removed the boost requirement from memory.h using the shared_memory type defined in ptr.h
parent b426faff
...@@ -7,8 +7,6 @@ ...@@ -7,8 +7,6 @@
#pragma once #pragma once
#endif #endif
#include <boost/shared_ptr.hpp>
#include <boost/smart_ptr/shared_ptr.hpp>
#include <set> #include <set>
#include "yaml-cpp/dll.h" #include "yaml-cpp/dll.h"
...@@ -40,7 +38,7 @@ class YAML_CPP_API memory_holder { ...@@ -40,7 +38,7 @@ class YAML_CPP_API memory_holder {
void merge(memory_holder& rhs); void merge(memory_holder& rhs);
private: private:
boost::shared_ptr<memory> m_pMemory; shared_memory m_pMemory;
}; };
} }
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment