diff options
| author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2019-01-23 04:28:54 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marcjeanmougin@free.fr> | 2019-01-24 17:08:27 +0000 |
| commit | 7dd1ed2d4eb8f7042587d22c601e3b3ad40cdcc2 (patch) | |
| tree | c936faa4f4f17374eacd937b926f7d474900bf7d /src/debug/demangle.h | |
| parent | Event: Switch all call sites from Util::ptr_shared to char const* or std::sha... (diff) | |
| download | inkscape-7dd1ed2d4eb8f7042587d22c601e3b3ad40cdcc2.tar.gz inkscape-7dd1ed2d4eb8f7042587d22c601e3b3ad40cdcc2.zip | |
Demangle: Switch to std::shared_ptr.
Diffstat (limited to 'src/debug/demangle.h')
| -rw-r--r-- | src/debug/demangle.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/debug/demangle.h b/src/debug/demangle.h index 95042446f..ba747cd3a 100644 --- a/src/debug/demangle.h +++ b/src/debug/demangle.h @@ -13,13 +13,14 @@ #ifndef SEEN_INKSCAPE_DEBUG_DEMANGLE_H #define SEEN_INKSCAPE_DEBUG_DEMANGLE_H -#include "util/share.h" +#include <memory> +#include <string> namespace Inkscape { namespace Debug { -Util::ptr_shared demangle(char const *name); +std::shared_ptr<std::string> demangle(char const *name); } |
