From bb6b92f9a6e93135f61dbb6655fbeb57399c5f01 Mon Sep 17 00:00:00 2001 From: baldurk Date: Thu, 18 Feb 2021 16:22:17 +0000 Subject: [PATCH] Compile fix for linux --- renderdoc/replay/basic_types_tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renderdoc/replay/basic_types_tests.cpp b/renderdoc/replay/basic_types_tests.cpp index 7c44eddb3..cb508091e 100644 --- a/renderdoc/replay/basic_types_tests.cpp +++ b/renderdoc/replay/basic_types_tests.cpp @@ -1779,7 +1779,7 @@ TEST_CASE("Test string type", "[basictypes][string]") SECTION("Inflexible string tests") { - rdcinflexiblestr test = "Hello, World"; + rdcinflexiblestr test = rdcstr("Hello, World"); CHECK(test == "Hello, World"); CHECK(test == "Hello, World"_lit);