diff options
| author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2019-01-23 04:34:37 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marcjeanmougin@free.fr> | 2019-01-24 17:08:27 +0000 |
| commit | 33a5ca9a670b38a9edcc034b026e622a642c6f7f (patch) | |
| tree | 2f2b62bd38c877c3e0597ac893c18761d3570a0c /src/debug/timestamp.h | |
| parent | Demangle: Switch to std::shared_ptr. (diff) | |
| download | inkscape-33a5ca9a670b38a9edcc034b026e622a642c6f7f.tar.gz inkscape-33a5ca9a670b38a9edcc034b026e622a642c6f7f.zip | |
Timestamp: Switch to std::shared_ptr.
Diffstat (limited to 'src/debug/timestamp.h')
| -rw-r--r-- | src/debug/timestamp.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/debug/timestamp.h b/src/debug/timestamp.h index 281c31b4c..a4db90dc6 100644 --- a/src/debug/timestamp.h +++ b/src/debug/timestamp.h @@ -13,13 +13,14 @@ #ifndef SEEN_INKSCAPE_DEBUG_TIMESTAMP_H #define SEEN_INKSCAPE_DEBUG_TIMESTAMP_H -#include "util/share.h" +#include <memory> +#include <string> namespace Inkscape { namespace Debug { -Util::ptr_shared timestamp(); +std::shared_ptr<std::string> timestamp(); } |
