aboutsummaryrefslogtreecommitdiff
path: root/Carpet
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@cct.lsu.edu>2006-09-25 21:41:00 +0000
committerErik Schnetter <schnetter@cct.lsu.edu>2006-09-25 21:41:00 +0000
commitf8cd8df4682a9beba5bed00bf1ba319785ca0baf (patch)
treed9ebe59db66cb84d0edabb61082c26c2a532abe2 /Carpet
parent40779a12f5dfcdc47284578d9495a2e777cb4c73 (diff)
CarpetLib: Use C++ comments for OMIT_F90 conditionals
darcs-hash:20060925214157-dae7b-e963052677829366ed96876a2bf7043d3d71ebf9.gz
Diffstat (limited to 'Carpet')
-rw-r--r--Carpet/CarpetLib/src/data.cc18
1 files changed, 9 insertions, 9 deletions
diff --git a/Carpet/CarpetLib/src/data.cc b/Carpet/CarpetLib/src/data.cc
index ba9fedfe4..d267feacc 100644
--- a/Carpet/CarpetLib/src/data.cc
+++ b/Carpet/CarpetLib/src/data.cc
@@ -837,7 +837,7 @@ extern "C" {
const int srcbbox[3][3],
const int dstbbox[3][3],
const int regbbox[3][3]);
-#endif /* !OMIT_F90 */
+#endif // #ifndef OMIT_F90
void CCTK_FCALL CCTK_FNAME(prolongate_3d_real8_o5)
(const CCTK_REAL8* src,
const int& srciext, const int& srcjext, const int& srckext,
@@ -927,7 +927,7 @@ extern "C" {
const int srcbbox[3][3],
const int dstbbox[3][3],
const int regbbox[3][3]);
-#endif /* !OMIT_F90 */
+#endif // #ifndef OMIT_F90
void CCTK_FCALL CCTK_FNAME(prolongate_3d_real8_2tl_o5)
(const CCTK_REAL8* src1, const CCTK_REAL8& t1,
const CCTK_REAL8* src2, const CCTK_REAL8& t2,
@@ -1027,7 +1027,7 @@ extern "C" {
const int srcbbox[3][3],
const int dstbbox[3][3],
const int regbbox[3][3]);
-#endif /* !OMIT_F90 */
+#endif // #ifndef OMIT_F90
void CCTK_FCALL CCTK_FNAME(prolongate_3d_real8_3tl_o5)
(const CCTK_REAL8* src1, const CCTK_REAL8& t1,
const CCTK_REAL8* src2, const CCTK_REAL8& t2,
@@ -1588,9 +1588,9 @@ void data<T>
assert (0);
} // switch (order_time)
break;
-#else
- CCTK_WARN(0, "ENO stencils are not supported!");
-#endif /* !OMIT_F90 */
+#else // #ifdef OMIT_F90
+ CCTK_WARN (0, "ENO stencils are not supported in this configuration. Remove the option OMIT_F90 to use them.");
+#endif // #ifdef OMIT_F90
#ifndef OMIT_F90
case op_WENO:
@@ -1664,9 +1664,9 @@ void data<T>
assert (0);
} // switch (order_time)
break;
-#else
- CCTK_WARN(0, "ENO stencils are not supported!");
-#endif /* !OMIT_F90 */
+#else // #ifdef OMIT_F90
+ CCTK_WARN (0, "ENO stencils are not supported in this configuration. Remove the option OMIT_F90 to use them.");
+#endif // #ifdef OMIT_F90
default:
assert(0);