Commit 377bccb1 by John Kessenich

Build: Fix #1665: remove __fastcall

parent 1ff8346b
...@@ -1335,7 +1335,7 @@ void ShDestruct(ShHandle handle) ...@@ -1335,7 +1335,7 @@ void ShDestruct(ShHandle handle)
// //
// Cleanup symbol tables // Cleanup symbol tables
// //
int __fastcall ShFinalize() int ShFinalize()
{ {
glslang::GetGlobalLock(); glslang::GetGlobalLock();
--NumberOfClients; --NumberOfClients;
......
...@@ -53,9 +53,6 @@ ...@@ -53,9 +53,6 @@
#define SH_IMPORT_EXPORT #define SH_IMPORT_EXPORT
#else #else
#define SH_IMPORT_EXPORT #define SH_IMPORT_EXPORT
#ifndef __fastcall
#define __fastcall
#endif
#define C_DECL #define C_DECL
#endif #endif
...@@ -83,7 +80,7 @@ SH_IMPORT_EXPORT int ShInitialize(); ...@@ -83,7 +80,7 @@ SH_IMPORT_EXPORT int ShInitialize();
// //
// Call this at process shutdown to clean up memory. // Call this at process shutdown to clean up memory.
// //
SH_IMPORT_EXPORT int __fastcall ShFinalize(); SH_IMPORT_EXPORT int ShFinalize();
// //
// Types of languages the compiler can consume. // Types of languages the compiler can consume.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment