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