Remove use of 'boost/shared_ptr.h'

This commit is contained in:
Matt Blair 2015-04-27 17:18:09 -04:00
parent 7995295038
commit 1b9796cec5

View File

@ -7,8 +7,7 @@
#pragma once
#endif
#include <boost/shared_ptr.hpp>
#include <boost/smart_ptr/shared_ptr.hpp>
#include <memory>
#include <set>
#include "yaml-cpp/dll.h"
@ -40,7 +39,7 @@ class YAML_CPP_API memory_holder {
void merge(memory_holder& rhs);
private:
boost::shared_ptr<memory> m_pMemory;
std::shared_ptr<memory> m_pMemory;
};
}
}