From 4c6f23eb3d1ee0e39d6df44ed573f6a0132f71fc Mon Sep 17 00:00:00 2001 From: Jonghyun Park Date: Fri, 14 Apr 2017 23:34:07 +0900 Subject: [x86/Linux] Use appropriate FCALL macro for DoToDecimal (#10963) --- src/classlibnative/bcltype/currency.cpp | 2 +- src/classlibnative/bcltype/currency.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/classlibnative/bcltype/currency.cpp b/src/classlibnative/bcltype/currency.cpp index 928a903f3f..4506105e25 100644 --- a/src/classlibnative/bcltype/currency.cpp +++ b/src/classlibnative/bcltype/currency.cpp @@ -16,7 +16,7 @@ #include "string.h" -FCIMPL2(void, COMCurrency::DoToDecimal, DECIMAL * result, CY c) +FCIMPL2_IV(void, COMCurrency::DoToDecimal, DECIMAL * result, CY c) { FCALL_CONTRACT; diff --git a/src/classlibnative/bcltype/currency.h b/src/classlibnative/bcltype/currency.h index 00c3e8dd5c..a1ba64e463 100644 --- a/src/classlibnative/bcltype/currency.h +++ b/src/classlibnative/bcltype/currency.h @@ -16,7 +16,7 @@ class COMCurrency { public: - static FCDECL2 (void, DoToDecimal, DECIMAL * result, CY c); + static FCDECL2_IV(void, DoToDecimal, DECIMAL * result, CY c); }; #include -- cgit v1.2.3