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/debug/event.h | |
| 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 'src/debug/event.h')
| -rw-r--r-- | src/debug/event.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug/event.h b/src/debug/event.h index db0146b4b..3bc6089f0 100644 --- a/src/debug/event.h +++ b/src/debug/event.h @@ -46,7 +46,7 @@ public: : name(n), value(std::move(v)) {} PropertyPair(char const *n, char const *v) : name(n), - value(std::move(std::make_shared<std::string>(v))) {} + value(std::make_shared<std::string>(v)) {} char const *name; std::shared_ptr<std::string> value; |
