Move all<int> to .cpp file to remove <limits> from common path

This commit is contained in:
Martin Hořeňovský 2018-08-23 12:49:05 +02:00
parent fdcd46420e
commit 92e25049cf
2 changed files with 8 additions and 6 deletions

View File

@ -9,6 +9,7 @@
#include "catch_random_number_generator.h"
#include "catch_interfaces_capture.h"
#include <limits>
#include <set>
namespace Catch {
@ -40,6 +41,10 @@ namespace Generators {
return getResultCapture().acquireGeneratorTracker( lineInfo );
}
template<>
auto all<int>() -> Generator<int> {
return range( std::numeric_limits<int>::min(), std::numeric_limits<int>::max() );
}
} // namespace Generators
} // namespace Catch

View File

@ -13,7 +13,6 @@
#include <memory>
#include <vector>
#include <cassert>
#include <limits>
#include <utility>
@ -123,16 +122,14 @@ namespace Generators {
template<typename T>
auto all() -> Generator<T> { return RequiresASpecialisationFor<T>(); }
template<>
auto all<int>() -> Generator<int>;
template<typename T>
auto range( T const& first, T const& last ) -> Generator<T> {
return Generator<T>( (last-first), pf::make_unique<RangeGenerator<T>>( first, last ) );
}
template<>
inline auto all<int>() -> Generator<int> {
return range( std::numeric_limits<int>::min(), std::numeric_limits<int>::max()-1 );
}
template<typename T>
auto random( T const& first, T const& last ) -> Generator<T> {