diff options
Diffstat (limited to 'tests/ingen_bench.cpp')
-rw-r--r-- | tests/ingen_bench.cpp | 2 |
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; } |