Skip to content

Commit aca92b6

Browse files
committed
Update missed uses
1 parent a0c4112 commit aca92b6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

libraries/core/tests/serialisation/binary_reader.tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ TEST_CASE("Binary reader handles error cases gracefully", "[morpheus.serialisati
3939
{
4040
REQUIRE(testing::deserialiseWithSpanStream<std::int64_t>(testing::makeCharArray(0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00)) == std::int64_t{100});
4141
REQUIRE(testing::deserialiseWithSpanStream<std::string>(testing::serialise(string)) == string);
42-
REQUIRE(ranges::equal(testing::deserialiseWithSpanStream<std::vector<std::byte>>(testing::serialise(std::span{bytes})), std::span{bytes}));
42+
REQUIRE(conf::ranges::equal(testing::deserialiseWithSpanStream<std::vector<std::byte>>(testing::serialise(std::span{bytes})), std::span{bytes}));
4343

4444
REQUIRE_THROWS_AS(testing::deserialiseWithSpanStream<std::int64_t>(testing::makeCharArray(0x64, 0x00, 0x00, 0x00)), BinaryException);
4545
REQUIRE_THROWS_AS(testing::deserialiseWithSpanStream<std::string>(testing::makeCharArray(0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00)),

libraries/gfx/platform/src/morpheus/gfx/platform/win32/render_window.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ void RenderWindow::resize()
357357
mWidth = boost::numeric_cast<std::uint16_t>(windowRect.right);
358358
mHeight = boost::numeric_cast<std::uint16_t>(windowRect.bottom);
359359

360-
debugPrint(fmt_ns::format("Window <{}> is at start <{}, {}> with dimensions <{}, {}>\n", mWindowName, mStartX, mStartY, mWidth, mHeight));
360+
debugPrint(conf::fmt::format("Window <{}> is at start <{}, {}> with dimensions <{}, {}>\n", mWindowName, mStartX, mStartY, mWidth, mHeight));
361361
}
362362

363363
} // namespace morpheus::gfx::win32

0 commit comments

Comments
 (0)