Remove some shared pointers on load monitors.

This commit is contained in:
JoelKatz
2012-11-28 15:53:07 -08:00
parent 8ba70c73f6
commit 72777b6b83
9 changed files with 15 additions and 11 deletions

View File

@@ -36,7 +36,8 @@ public:
class LoadEvent
{
public:
typedef boost::shared_ptr<LoadEvent> pointer;
typedef boost::shared_ptr<LoadEvent> pointer;
typedef std::auto_ptr<LoadEvent> autoptr;
protected:
LoadMonitor& mMonitor;