diff options
Diffstat (limited to 'src/debug/timestamp.cpp')
| -rw-r--r-- | src/debug/timestamp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug/timestamp.cpp b/src/debug/timestamp.cpp index 619c4a18a..14d211ef3 100644 --- a/src/debug/timestamp.cpp +++ b/src/debug/timestamp.cpp @@ -28,7 +28,7 @@ std::shared_ptr<std::string> timestamp() { gchar *value = g_strdup_printf( "%d.%06d", static_cast<gint>(timestamp.tv_sec), static_cast<gint>(timestamp.tv_usec) ); std::shared_ptr<std::string> result = std::make_shared<std::string>(value); g_free(value); - return std::move(result); + return result; } } |
