1
0
mirror of https://github.com/catchorg/Catch2.git synced 2025-03-12 17:21:11 -04:00

Add missing include for VxWorks build.

std::min is defined in algorithm provides std::min. It appears to be transitively included for most platforms. For VxWorks however this explicit include is required.
This commit is contained in:
Riom 2022-09-07 10:49:44 +02:00 committed by GitHub
parent 4adf010549
commit ea65485fee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,6 +11,7 @@
#include <catch2/catch_session.hpp>
#include <cmath>
#include <algorithm>
namespace Catch {