Fix building as shared library with MSVC.

This commit is contained in:
Dimitrij Mijoski 2022-09-17 14:58:52 +02:00 committed by Martin Hořeňovský
parent 0de60d8e7e
commit c0e582e659
6 changed files with 22 additions and 3 deletions

View file

@ -296,13 +296,13 @@ namespace Catch {
template<>
struct StringMaker<float> {
static std::string convert(float value);
static int precision;
CATCH_EXPORT static int precision;
};
template<>
struct StringMaker<double> {
static std::string convert(double value);
static int precision;
CATCH_EXPORT static int precision;
};
template <typename T>