diff options
| author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2019-01-23 04:38:21 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marcjeanmougin@free.fr> | 2019-01-24 17:08:27 +0000 |
| commit | 0a7847d441fc5aeb869ec44ab8d1923babd1697e (patch) | |
| tree | 627d9c5624173bbfcb06a64919af59001046e78e /src/debug/heap.h | |
| parent | Timestamp: Switch to std::shared_ptr. (diff) | |
| download | inkscape-0a7847d441fc5aeb869ec44ab8d1923babd1697e.tar.gz inkscape-0a7847d441fc5aeb869ec44ab8d1923babd1697e.zip | |
Debug: Remove the last remnants of Util::ptr_shared.
Diffstat (limited to 'src/debug/heap.h')
| -rw-r--r-- | src/debug/heap.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/debug/heap.h b/src/debug/heap.h index 72aae1603..81e7b73eb 100644 --- a/src/debug/heap.h +++ b/src/debug/heap.h @@ -14,7 +14,6 @@ #define SEEN_INKSCAPE_DEBUG_HEAP_H #include <cstddef> -#include "util/share.h" namespace Inkscape { @@ -37,7 +36,7 @@ public: virtual int features() const=0; - virtual Util::ptr_shared name() const=0; + virtual char const *name() const=0; virtual Stats stats() const=0; virtual void force_collect()=0; }; |
