From 64bd884d94fc45600eaed9566585d455b875a87a Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sat, 23 Feb 2019 14:42:44 +0000 Subject: Add "none" calling convention --- src/parser.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/parser.cpp') diff --git a/src/parser.cpp b/src/parser.cpp index a62bac233..e38c34a0a 100644 --- a/src/parser.cpp +++ b/src/parser.cpp @@ -2700,6 +2700,7 @@ ProcCallingConvention string_to_calling_convention(String s) { if (s == "std") return ProcCC_StdCall; if (s == "fastcall") return ProcCC_FastCall; if (s == "fast") return ProcCC_FastCall; + if (s == "none") return ProcCC_None; return ProcCC_Invalid; } -- cgit v1.2.3