summaryrefslogtreecommitdiff
path: root/src/classlibnative
diff options
context:
space:
mode:
authorJonghyun Park <parjong@gmail.com>2017-04-14 23:34:07 +0900
committerJan Kotas <jkotas@microsoft.com>2017-04-14 07:34:07 -0700
commit4c6f23eb3d1ee0e39d6df44ed573f6a0132f71fc (patch)
treeb3464c8fe5dd33e53a750ede72b6ad5efd371a9a /src/classlibnative
parentedd23a10bc574058a42c62dc829973dc48449837 (diff)
downloadcoreclr-4c6f23eb3d1ee0e39d6df44ed573f6a0132f71fc.tar.gz
coreclr-4c6f23eb3d1ee0e39d6df44ed573f6a0132f71fc.tar.bz2
coreclr-4c6f23eb3d1ee0e39d6df44ed573f6a0132f71fc.zip
[x86/Linux] Use appropriate FCALL macro for DoToDecimal (#10963)
Diffstat (limited to 'src/classlibnative')
-rw-r--r--src/classlibnative/bcltype/currency.cpp2
-rw-r--r--src/classlibnative/bcltype/currency.h2
2 files changed, 2 insertions, 2 deletions
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 <poppack.h>