Skip to content

Commit

Permalink
Fix PlayStation build following 276593@main
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=271609

Unreviewed build fix.
Same as the previous (276607@main).

* Tools/TestWebKitAPI/Tests/WebCore/KeyedCoding.cpp:

Canonical link: https://commits.webkit.org/276609@main
  • Loading branch information
rkirsling committed Mar 24, 2024
1 parent 7e81143 commit fb829e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/TestWebKitAPI/Tests/WebCore/KeyedCoding.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ static bool checkDecodedBytes(std::span<const uint8_t> original, std::span<const

TEST(KeyedCoding, SetAndGetBytes)
{
constexpr auto inputData = std::to_array<uint8_t>({ 0x00, 0x01, 0x02, 0x03, 0xde, 0xad, 0xbe, 0xef });
constexpr std::array<uint8_t, 8> inputData = { 0x00, 0x01, 0x02, 0x03, 0xde, 0xad, 0xbe, 0xef };

auto encoder = WebCore::KeyedEncoder::encoder();
encoder->encodeBytes("data"_s, inputData);
Expand Down

0 comments on commit fb829e0

Please sign in to comment.