summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-08-01 14:32:23 +0200
committerDavid Robillard <d@drobilla.net>2020-08-02 01:48:48 +0200
commitcfee0cd7d2a704153df73449be38fcef60b958eb (patch)
tree097f83c2c95c985ae55a2a8b501e4cf60a8d5f21 /tests
parenta9450b3903b93a5d86c1295d12a4786791186361 (diff)
downloadingen-cfee0cd7d2a704153df73449be38fcef60b958eb.tar.gz
ingen-cfee0cd7d2a704153df73449be38fcef60b958eb.tar.bz2
ingen-cfee0cd7d2a704153df73449be38fcef60b958eb.zip
Fix suppressed automatic moves
Diffstat (limited to 'tests')
-rw-r--r--tests/ingen_bench.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ingen_bench.cpp b/tests/ingen_bench.cpp
index 2741e5d6..49a52d54 100644
--- a/tests/ingen_bench.cpp
+++ b/tests/ingen_bench.cpp
@@ -51,7 +51,7 @@ static std::string
real_path(const char* path)
{
char* const c_real_path = realpath(path, nullptr);
- const std::string result(c_real_path ? c_real_path : "");
+ std::string result(c_real_path ? c_real_path : "");
free(c_real_path);
return result;
}