From 019eeff6a7d051427ad62a288f350e66471a0462 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 2 Aug 2020 13:43:01 +0200 Subject: Remove std::unique_ptr alias --- tests/ingen_test.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/ingen_test.cpp b/tests/ingen_test.cpp index fbcc5cc0..5634f513 100644 --- a/tests/ingen_test.cpp +++ b/tests/ingen_test.cpp @@ -45,6 +45,7 @@ #include #include #include +#include #include #include @@ -66,7 +67,7 @@ ingen_try(bool cond, const char* msg) static FilePath real_file_path(const char* path) { - UPtr> real_path{realpath(path, nullptr)}; + std::unique_ptr> real_path{realpath(path, nullptr)}; return FilePath{real_path.get()}; } -- cgit v1.2.1