Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/orc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'orc/orcfunctions.c')
-rw-r--r--orc/orcfunctions.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/orc/orcfunctions.c b/orc/orcfunctions.c
index e1dc477..3ddc501 100644
--- a/orc/orcfunctions.c
+++ b/orc/orcfunctions.c
@@ -56,6 +56,8 @@ typedef union { orc_int64 i; double f; orc_int32 x2[2]; float x2f[2]; orc_int16
#define ORC_RESTRICT restrict
#elif defined(__GNUC__) && __GNUC__ >= 4
#define ORC_RESTRICT __restrict__
+#elif defined(_MSC_VER)
+#define ORC_RESTRICT __restrict
#else
#define ORC_RESTRICT
#endif