From e1f049fd24a003b4e0e9a3a40e703188c12c8a2a Mon Sep 17 00:00:00 2001 From: r0qs Date: Tue, 5 Sep 2023 13:33:59 +0200 Subject: [PATCH] Minor fix for OSX build --- test/libyul/DominatorTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/libyul/DominatorTest.cpp b/test/libyul/DominatorTest.cpp index 542037939..9c9bfe86f 100644 --- a/test/libyul/DominatorTest.cpp +++ b/test/libyul/DominatorTest.cpp @@ -90,7 +90,7 @@ protected: { return {_pair.first.name, _pair.second}; }; - return _vertexIndices | ranges::views::transform(convertIndex) | ranges::to; + return _vertexIndices | ranges::views::transform(convertIndex) | ranges::to>; } };