Removed boost::intrusive_ptr include (unnecessary as of 6d73033445)

This commit is contained in:
Charles Dang 2020-12-03 14:28:03 +11:00
parent 6aae355fcf
commit fd2662bea6

View file

@ -12,15 +12,12 @@
See the COPYING file for more details. See the COPYING file for more details.
*/ */
// The purpose of this header is to forward declare the unit_ptr, if it
// is an intrusive pointer then this requires some boilerplate taken
// care of here.
#pragma once #pragma once
#include <boost/intrusive_ptr.hpp>
#include <memory>
#include "utils/shared_reference.hpp" #include "utils/shared_reference.hpp"
#include <memory>
class unit; class unit;
typedef utils::shared_reference<unit> nonempty_unit_ptr; typedef utils::shared_reference<unit> nonempty_unit_ptr;