externals: Update catch to 2.3.0

Updates the library from 2.2.3 to 2.3.0
This commit is contained in:
Lioncash 2018-08-07 19:24:39 -04:00
parent 4fa3511a63
commit 62b0b83fd8
5 changed files with 5 additions and 5 deletions

2
externals/catch vendored

@ -1 +1 @@
Subproject commit d2a130f2433aeaca070e3e4d6298a80049d21cfc
Subproject commit 15cf3caaceb21172ea42a24e595a2eb58c3ec960

View File

@ -2,7 +2,7 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include <catch.hpp>
#include <catch2/catch.hpp>
#include <math.h>
#include "common/param_package.h"

View File

@ -2,7 +2,7 @@
// Licensed under GPLv2+
// Refer to the license.txt file included.
#include <catch.hpp>
#include <catch2/catch.hpp>
#include <array>
#include <bitset>

View File

@ -2,7 +2,7 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include <catch.hpp>
#include <catch2/catch.hpp>
#include <glad/glad.h>
// This is not an actual test, but a work-around for issue #2183.

View File

@ -3,7 +3,7 @@
// Refer to the license.txt file included.
#define CATCH_CONFIG_MAIN
#include <catch.hpp>
#include <catch2/catch.hpp>
// Catch provides the main function since we've given it the
// CATCH_CONFIG_MAIN preprocessor directive.