Removed deprecated strstream headers. Fixed TEST macro to not combine two string tokens together (gcc hates this)
This commit is contained in:
parent
c969fe82e6
commit
b360d524ec
@ -38,7 +38,6 @@ All rights reserved.
|
||||
#pragma once
|
||||
#include <iostream>
|
||||
#include <sstream>
|
||||
#include <strstream>
|
||||
#include <format>
|
||||
#include <any>
|
||||
#include <memory>
|
||||
|
||||
@ -39,7 +39,7 @@ All rights reserved.
|
||||
#define VERSION_MAJOR 1
|
||||
#define VERSION_MINOR 3
|
||||
#define VERSION_PATCH 0
|
||||
#define VERSION_BUILD 13424
|
||||
#define VERSION_BUILD 13425
|
||||
|
||||
#define stringify(a) stringify_(a)
|
||||
#define stringify_(a) #a
|
||||
|
||||
@ -17996,7 +17996,7 @@ using Catch::Detail::Approx;
|
||||
#endif // TWOBLUECUBES_SINGLE_INCLUDE_CATCH_HPP_INCLUDED
|
||||
#endif
|
||||
#ifdef UNIT_TESTING
|
||||
#define TEST(cl,testCaseName) TEST_CASE_METHOD(cl,"["#cl"] "##testCaseName)
|
||||
#define TEST(cl,testCaseName) TEST_CASE_METHOD(cl,"["#cl"] "#testCaseName)
|
||||
#else
|
||||
#define TEST(cl,testCaseName) void UnusedFunc##cl()
|
||||
#define REQUIRE(condition)
|
||||
|
||||
@ -61,7 +61,6 @@ David Barr, aka javidx9, <20>OneLoneCoder 2019, 2020, 2021, 2022
|
||||
#include <fstream>
|
||||
#include <stack>
|
||||
#include <sstream>
|
||||
#include <strstream>
|
||||
#include <numeric>
|
||||
#include "Error.h"
|
||||
#include<ranges>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user