From bad688ad15c66adeb48887bcbf445636b8382c51 Mon Sep 17 00:00:00 2001 From: bugdea1er Date: Sun, 28 Jan 2024 01:11:02 +0300 Subject: [PATCH] Stylefixes --- include/tmp/path.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/tmp/path.hpp b/include/tmp/path.hpp index c1f9573..de42cf1 100644 --- a/include/tmp/path.hpp +++ b/include/tmp/path.hpp @@ -32,7 +32,7 @@ class path { public: /// Creates a path from a moved @p other - path(path&& other) noexcept: p(std::move(other.p)) { + path(path&& other) noexcept : p(std::move(other.p)) { other.p.clear(); }