summaryrefslogtreecommitdiff
path: root/Source/UnitTests/Common/x64EmitterTest.cpp
diff options
context:
space:
mode:
authorDr. Dystopia <jonis9898@hotmail.com>2025-05-16 21:09:52 +0200
committerDr. Dystopia <jonis9898@hotmail.com>2025-05-16 21:09:52 +0200
commit2102108b1a62c0e30f86e2ceada7d8be03603923 (patch)
tree0a1c1e80e5c638104942006c267106a70f96a7ed /Source/UnitTests/Common/x64EmitterTest.cpp
parent404a7c75b24da5842c46988bf19c1d5b330dcca1 (diff)
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);