Skip to content

Commit

Permalink
Fixed MSVC compiler errors 11/24/2024 | 24w47b2
Browse files Browse the repository at this point in the history
  • Loading branch information
GamesTrap committed Nov 24, 2024
1 parent 9080182 commit 3e87bf2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion UnitTests/src/Layers/LayerStack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ TEST_CASE("TRAP::LayerStack", "[layerstack]")

SECTION("Constructors")
{
static constexpr TRAP::LayerStack layerStack{};
const TRAP::LayerStack layerStack{};

//Copy constructor
// static constexpr TRAP::LayerStack layerStack1{layerStack}; //Deleted
Expand Down
2 changes: 1 addition & 1 deletion UnitTests/src/Utils/Concurrency/LockFreeQueue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#include "Utils/Concurrency/LockFreeQueue.h"

TEST_CASE("TRAP::Utils::LockFreeQueue()", "[utils][concurrency][lockfreequeue]")
TEST_CASE("TRAP::Utils::LockFreeQueue", "[utils][concurrency][lockfreequeue]")
{
SECTION("Class requirements")
{
Expand Down

0 comments on commit 3e87bf2

Please sign in to comment.