Merge pull request #34 from am11/bleeding
Repo: Mutes a modifier mismatch warning
This commit is contained in:
commit
473e3cb66d
3 changed files with 8 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -16,6 +16,7 @@
|
|||
!HEADER
|
||||
!ChangeLog
|
||||
|
||||
CMakeFiles/
|
||||
!CMakeLists.txt
|
||||
!.cmake/*
|
||||
|
||||
|
|
|
@ -2,7 +2,8 @@
|
|||
<img src="doc/criterion-title.png" height="96" alt="Criterion Logo" />
|
||||
=========
|
||||
|
||||
[](https://travis-ci.org/Snaipe/Criterion)
|
||||
[](https://travis-ci.org/Snaipe/Criterion)
|
||||
[](https://ci.appveyor.com/project/Snaipe/Criterion/branch/bleeding)
|
||||
[](https://coveralls.io/r/Snaipe/Criterion?branch=bleeding)
|
||||
[](https://github.com/Snaipe/Criterion/blob/master/LICENSE)
|
||||
[](https://github.com/Snaipe/Criterion/releases)
|
||||
|
@ -32,7 +33,7 @@ the user would have with other frameworks:
|
|||
* [x] There is a support for theories alongside tests
|
||||
* [x] Progress and statistics can be followed in real time with report hooks.
|
||||
* [x] TAP output format can be enabled with an option.
|
||||
* [x] Runs on Linux, FreeBSD, Mac OS X, and Windows (Compiling with MinGW GCC).
|
||||
* [x] Runs on Linux, FreeBSD, Mac OS X, and Windows (Compiling with MinGW GCC and Visaul Studio 2015+).
|
||||
|
||||
## Downloads
|
||||
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
#ifdef _MSC_VER
|
||||
#pragma warning(disable : 4090)
|
||||
#endif
|
||||
|
||||
#include <criterion/theories.h>
|
||||
#include <limits.h>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue