summaryrefslogtreecommitdiffhomepage
path: root/asm/intel64/ret.cpp
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2020-10-18 20:39:56 +0200
committerRoland Reichwein <mail@reichwein.it>2020-10-18 20:39:56 +0200
commit1349c00b782eca3ea841bfa388301cb6fc908cc7 (patch)
tree0d1501368f8df3ffe39ca2e97157a7549b4cf7a5 /asm/intel64/ret.cpp
parent0cb5824977dbff51fa7b77c20279b6bd4cb49d78 (diff)
Namespace Asm
Diffstat (limited to 'asm/intel64/ret.cpp')
-rw-r--r--asm/intel64/ret.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/asm/intel64/ret.cpp b/asm/intel64/ret.cpp
index cd9ddd4..c42ad8a 100644
--- a/asm/intel64/ret.cpp
+++ b/asm/intel64/ret.cpp
@@ -4,7 +4,7 @@
namespace {
-bool registered { registerOp("ret", [](AsmArgs& args) -> std::shared_ptr<Op>{
+bool registered { registerOp("ret", [](Asm::Args& args) -> std::shared_ptr<Op>{
return std::make_shared<Op_ret>();
}) };