Removed deprecated strstream headers. Fixed TEST macro to not combine two string tokens together (gcc hates this)
Some checks failed
Emscripten Build / Build_and_Deploy_Web_Build (push) Successful in 8m33s
Emscripten Build / UnitTesting (push) Failing after 15m41s

This commit is contained in:
AMay 2026-04-29 02:22:20 -05:00
parent c969fe82e6
commit b360d524ec
4 changed files with 2 additions and 4 deletions

View File

@ -38,7 +38,6 @@ All rights reserved.
#pragma once
#include <iostream>
#include <sstream>
#include <strstream>
#include <format>
#include <any>
#include <memory>

View File

@ -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

View File

@ -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)

View File

@ -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>