From 26c89df31b66d863207218aa292081f055598f31 Mon Sep 17 00:00:00 2001 From: rafaykhurram <32809428+rafaykhurram@users.noreply.github.com> Date: Thu, 7 Mar 2024 06:34:16 -0600 Subject: [PATCH] subgroups: Add missing algorithm header (#1906) * Was causing a build error with GN * fill_and_shuffle_safe_values() in subhelpers.cpp calls std::shuffle() * std::shuffle is defined in --- test_conformance/subgroups/subhelpers.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/test_conformance/subgroups/subhelpers.cpp b/test_conformance/subgroups/subhelpers.cpp index 440cde20..0899ef9c 100644 --- a/test_conformance/subgroups/subhelpers.cpp +++ b/test_conformance/subgroups/subhelpers.cpp @@ -16,6 +16,7 @@ #include "subhelpers.h" +#include #include // Define operator<< for cl_ types, accessing the .s member.