forked from boostorg/unordered
		
	Copyright update. Switch back to the version where the sentinel points to itself. Remove alternative versions of swap. Workaround a borland bug or two. More consistent use of class/swap/template. Avoid a few warnings. Add a no-throw swap to the allocator for exception testing. [SVN r3793]
		
			
				
	
	
		
			28 lines
		
	
	
		
			740 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			740 B
		
	
	
	
		
			C++
		
	
	
	
	
	
 | 
						|
// Copyright 2005-2007 Daniel James.
 | 
						|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
 | 
						|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
 | 
						|
 | 
						|
#if !defined(BOOST_UNORDERED_TEST_HELPERS_RANDOM_VALUES_HEADER)
 | 
						|
#define BOOST_UNORDERED_TEST_HELPERS_RANDOM_VALUES_HEADER
 | 
						|
 | 
						|
#include <list>
 | 
						|
#include <algorithm>
 | 
						|
#include "./generators.hpp"
 | 
						|
 | 
						|
namespace test
 | 
						|
{
 | 
						|
    template <class X>
 | 
						|
    struct random_values
 | 
						|
        : public std::list<typename X::value_type>
 | 
						|
    {
 | 
						|
        random_values(int count) {
 | 
						|
            typedef typename X::value_type value_type;
 | 
						|
            static test::generator<value_type> gen;
 | 
						|
            std::generate_n(std::back_inserter(*this), count, gen);
 | 
						|
        }
 | 
						|
    };
 | 
						|
}
 | 
						|
 | 
						|
#endif
 |