summaryrefslogtreecommitdiff
path: root/Source/UnitTests/Common/x64EmitterTest.cpp
diff options
context:
space:
mode:
authorJordan Woyak <jordan.woyak@gmail.com>2025-05-18 02:12:45 -0500
committerGitHub <noreply@github.com>2025-05-18 02:12:45 -0500
commit2e22a3cf425caae0a3cb52cc4deca7008209955f (patch)
tree558307be915d9708eaae615380e187044d0dd83d /Source/UnitTests/Common/x64EmitterTest.cpp
parent88005deaeb26c3bcb4205ca08f93bfdc3b9088db (diff)
parent2102108b1a62c0e30f86e2ceada7d8be03603923 (diff)
Merge pull request #13672 from tygyh/UnitTests/Remove-redundant-template-type-specifiers
UnitTests: Remove redundant template type specifers
Diffstat (limited to 'Source/UnitTests/Common/x64EmitterTest.cpp')
-rw-r--r--Source/UnitTests/Common/x64EmitterTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/UnitTests/Common/x64EmitterTest.cpp b/Source/UnitTests/Common/x64EmitterTest.cpp
index 7c5b010ae5..ae69c3f712 100644
--- a/Source/UnitTests/Common/x64EmitterTest.cpp
+++ b/Source/UnitTests/Common/x64EmitterTest.cpp
@@ -194,7 +194,7 @@ protected:
void ExpectBytes(const std::vector<u8> expected_bytes)
{
- const std::vector<u8> code_bytes(code_buffer, emitter->GetWritableCodePtr());
+ const std::vector code_bytes(code_buffer, emitter->GetWritableCodePtr());
EXPECT_EQ(expected_bytes, code_bytes);