diff options
| author | Thomas Holder <thomas@thomas-holder.de> | 2019-08-23 15:25:01 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marcjeanmougin@free.fr> | 2019-08-23 17:38:10 +0000 |
| commit | ac61104df7df1b452666a037aeac55d5b71da85d (patch) | |
| tree | 6240a92eebb158c8785e15342a5db7c0ecf3d0a6 /src/gc-anchored.cpp | |
| parent | Update of Czech translation (diff) | |
| download | inkscape-ac61104df7df1b452666a037aeac55d5b71da85d.tar.gz inkscape-ac61104df7df1b452666a037aeac55d5b71da85d.zip | |
Eliminate clang warnings
-Winfinite-recursion
-Wpessimizing-move
-Wunused-label
-Wunneeded-internal-declaration
-Wself-assign-overloaded
-Wunused-const-variable (some)
-Wsometimes-uninitialized (some)
Diffstat (limited to '')
| -rw-r--r-- | src/gc-anchored.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gc-anchored.cpp b/src/gc-anchored.cpp index dc5a9e45c..12eaa8319 100644 --- a/src/gc-anchored.cpp +++ b/src/gc-anchored.cpp @@ -33,7 +33,7 @@ public: { _addProperty("base", Util::format("%p", Core::base(const_cast<Anchored *>(object))).pointer()); _addProperty("pointer", Util::format("%p", object).pointer()); - _addProperty("class", std::move(Debug::demangle(typeid(*object).name()))); + _addProperty("class", Debug::demangle(typeid(*object).name())); _addProperty("new-refcount", object->_anchored_refcount() + bias); } }; |
