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/sysv-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/sysv-heap.h')
| -rw-r--r-- | src/debug/sysv-heap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/debug/sysv-heap.h b/src/debug/sysv-heap.h index 3829eb11d..f7ed27107 100644 --- a/src/debug/sysv-heap.h +++ b/src/debug/sysv-heap.h @@ -24,8 +24,8 @@ public: int features() const override; - Util::ptr_shared name() const override { - return Util::share_static_string("standard malloc()"); + char const *name() const override { + return "standard malloc()"; } Stats stats() const override; void force_collect() override {} |
