[committed] libstdc++: Add missing header to test

Message ID YVcVvaF07So87B9s@redhat.com
State Committed
Commit 94311bf34704ebecf745043fe2df03df201052fe
Headers
Series [committed] libstdc++: Add missing header to test |

Commit Message

Jonathan Wakely Oct. 1, 2021, 2:05 p.m. UTC
  We need to include <iterator> (or one of the containers) to get a
definition for std::begin.

libstdc++-v3/ChangeLog:

	* testsuite/25_algorithms/is_permutation/2.cc: Include <iterator>.

Tested x86_64-linux. Committed to trunk.
commit 94311bf34704ebecf745043fe2df03df201052fe
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Fri Oct 1 12:55:53 2021

    libstdc++: Add missing header to test
    
    We need to include <iterator> (or one of the containers) to get a
    definition for std::begin.
    
    libstdc++-v3/ChangeLog:
    
            * testsuite/25_algorithms/is_permutation/2.cc: Include <iterator>.
  

Patch

diff --git a/libstdc++-v3/testsuite/25_algorithms/is_permutation/2.cc b/libstdc++-v3/testsuite/25_algorithms/is_permutation/2.cc
index 8d15c22f593..252226ca08f 100644
--- a/libstdc++-v3/testsuite/25_algorithms/is_permutation/2.cc
+++ b/libstdc++-v3/testsuite/25_algorithms/is_permutation/2.cc
@@ -20,6 +20,7 @@ 
 // 25.2.12 [alg.is_permutation] Is permutation
 
 #include <algorithm>
+#include <iterator>
 #include <functional>
 #include <testsuite_hooks.h>