summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreschnett <eschnett@17b73243-c579-4c4c-a9d2-2d5706c11dac>2013-10-30 02:18:03 +0000
committereschnett <eschnett@17b73243-c579-4c4c-a9d2-2d5706c11dac>2013-10-30 02:18:03 +0000
commit80d9aba4e59df124ba84e538e0f3cf47e990983a (patch)
treec25f1a3502be066d37a97f62ec2b479560fa1d31
parent919238ad36d8e29c8329e96ce1e417d16fc8b530 (diff)
Correct syntax error
git-svn-id: http://svn.cactuscode.org/flesh/trunk@5050 17b73243-c579-4c4c-a9d2-2d5706c11dac
-rw-r--r--lib/make/cctk_Config.h.in18
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/make/cctk_Config.h.in b/lib/make/cctk_Config.h.in
index 9bbff426..13cd301f 100644
--- a/lib/make/cctk_Config.h.in
+++ b/lib/make/cctk_Config.h.in
@@ -170,15 +170,15 @@
#undef CCTK_REAL4
/* Disable 'restrict' for compiler versions known to be buggy */
-/* Note that at the time of writing this comment, only versions up to and
- * including 20130313 have been tested. Newer versions might actually not
- * show this bug and the workaround could then be removed. At the moment
- * the workaround is enabled for any version >= 20121010 to be on the
- * safe side.
-# if (defined __INTEL_COMPILER && \
- __INTEL_COMPILER_BUILD_DATE >= 20121010 && \
- !defined CCTK_INTEL_COMPILER_DONT_DISABLE_RESTRICT )
- #define CCTK_DISABLE_RESTRICT 1
+/* Note that at the time of writing this comment (2013-10-19), only
+ * versions up to and including 20130313 have been tested. Newer
+ * versions might actually not show this bug and the workaround could
+ * then be removed. At the moment the workaround is enabled for any
+ * version >= 20121010 to be on the safe side. */
+#if (defined __INTEL_COMPILER && \
+ __INTEL_COMPILER_BUILD_DATE >= 20121010 && \
+ !defined CCTK_INTEL_COMPILER_DONT_DISABLE_RESTRICT)
+# define CCTK_DISABLE_RESTRICT 1
#endif
/****************************************************************************/