summaryrefslogtreecommitdiff
path: root/src/vm/methodtable.h
diff options
context:
space:
mode:
authorSinan Kaya <41809318+franksinankaya@users.noreply.github.com>2019-02-14 14:06:57 -0500
committerJan Kotas <jkotas@microsoft.com>2019-02-14 11:06:57 -0800
commit36931ac7b24249201547f7ca667105014b2e4c7f (patch)
tree1ad562f7776e57f14a884fadcd17e23911637ec8 /src/vm/methodtable.h
parent84eaa7ac079e625f2fbe36ba976f735dbdacdc6b (diff)
downloadcoreclr-36931ac7b24249201547f7ca667105014b2e4c7f.tar.gz
coreclr-36931ac7b24249201547f7ca667105014b2e4c7f.tar.bz2
coreclr-36931ac7b24249201547f7ca667105014b2e4c7f.zip
Gnuport cleanup 3 (#22581)
* Reorder extern "C" and visibility statements In file included from coreclr/src/pal/inc/pal.h:70:0, coreclr/src/pal/inc/pal_mstypes.h:30:25: error: expected unqualified-id before string constant #define EXTERN_C extern "C" ^ coreclr/src/pal/inc/rt/palrt.h:216:30: note: in expansion of macro 'EXTERN_C' #define STDAPI_(type) EXTERN_C type STDAPICALLTYPE * Need double quotes around single quotes in error statements fix error statements Can't have ' character in error statement * Abstract __declspec(noinline) Generate compiler independent macros for noinline request. * Remove unused DBG_NOINLINE_X86__RET_INLINE * Abstract __declspec(nothrow)
Diffstat (limited to 'src/vm/methodtable.h')
-rw-r--r--src/vm/methodtable.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vm/methodtable.h b/src/vm/methodtable.h
index 3a7a69e254..f0c035e738 100644
--- a/src/vm/methodtable.h
+++ b/src/vm/methodtable.h
@@ -3665,14 +3665,14 @@ private:
#if defined(FEATURE_HFA)
#if defined(UNIX_AMD64_ABI)
-#error Can't define both FEATURE_HFA and UNIX_AMD64_ABI
+#error "Can't define both FEATURE_HFA and UNIX_AMD64_ABI"
#endif
enum_flag_IsHFA = 0x00000800, // This type is an HFA (Homogenous Floating-point Aggregate)
#endif // FEATURE_HFA
#if defined(UNIX_AMD64_ABI)
#if defined(FEATURE_HFA)
-#error Can't define both FEATURE_HFA and UNIX_AMD64_ABI
+#error "Can't define both FEATURE_HFA and UNIX_AMD64_ABI"
#endif
enum_flag_IsRegStructPassed = 0x00000800, // This type is a System V register passed struct.
#endif // UNIX_AMD64_ABI