2
0
mirror of https://github.com/catchorg/Catch2 synced 2026-02-14 13:22:11 +00:00

Fixed more warnings and applied workaround for getting to std::numeric_limits without clashing with Windows' min() and max() macros.

This commit is contained in:
Phil Nash
2011-02-16 19:02:09 +00:00
parent dea778138e
commit 73acd945cd
18 changed files with 55 additions and 22 deletions

View File

@@ -12,7 +12,7 @@
#include "../catch.hpp"
size_t multiply( int a, int b )
size_t multiply( size_t a, size_t b )
{
return a*b;
}