diff options
Diffstat (limited to 'src/debug/simple-event.h')
| -rw-r--r-- | src/debug/simple-event.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/debug/simple-event.h b/src/debug/simple-event.h index 90eed3a0e..3695eaa6a 100644 --- a/src/debug/simple-event.h +++ b/src/debug/simple-event.h @@ -21,17 +21,17 @@ namespace Debug { template <Event::Category C=Event::OTHER> class SimpleEvent : public Event { public: - SimpleEvent(Util::shared_ptr<char> name) : _name(name) {} + SimpleEvent(Util::ptr_shared<char> name) : _name(name) {} SimpleEvent(char const *name) : _name(Util::share_string(name)) {} static Category category() { return C; } - Util::shared_ptr<char> name() const { return _name; } + Util::ptr_shared<char> name() const { return _name; } unsigned propertyCount() const { return 0; } PropertyPair property(unsigned property) const { return PropertyPair(); } private: - Util::shared_ptr<char> _name; + Util::ptr_shared<char> _name; }; } |
