From 33199c25e5af1553e474a6f6eede07e888cd45ee Mon Sep 17 00:00:00 2001 From: Francis Murtagh Date: Mon, 15 Feb 2021 10:11:28 +0000 Subject: IVGCVSW-5675 Implement Pimpl Idiom for IProfiler (lower priority) Signed-off-by: Francis Murtagh Change-Id: If716f5f4e9b5433586b8a939d326830482da2f74 --- tests/InferenceTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/InferenceTest.cpp') diff --git a/tests/InferenceTest.cpp b/tests/InferenceTest.cpp index 3392f6ea51..e31e7dc6fb 100644 --- a/tests/InferenceTest.cpp +++ b/tests/InferenceTest.cpp @@ -142,7 +142,7 @@ bool InferenceTest(const InferenceTestOptions& params, } // Create a profiler and register it for the current thread. - std::unique_ptr profiler = std::make_unique(); + std::unique_ptr profiler = std::make_unique(); ProfilerManager::GetInstance().RegisterProfiler(profiler.get()); // Enable profiling if requested. -- cgit v1.2.1