summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2005-10-03 15:02:38 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2005-10-03 15:02:38 +0000
commit24369ac634127b223d2de33115209e107a61c090 (patch)
tree2aa44d3a6bbff86f14b6e07fd1146be50c9eebaa
parent552823c907827feb4176a31bbde87b4ab9e7e2c6 (diff)
Changing C++ comment markers to C comment markers.
git-svn-id: http://svn.cactuscode.org/flesh/trunk@4160 17b73243-c579-4c4c-a9d2-2d5706c11dac
-rw-r--r--src/main/WarnLevel.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/main/WarnLevel.c b/src/main/WarnLevel.c
index 3d5872f9..963bb7db 100644
--- a/src/main/WarnLevel.c
+++ b/src/main/WarnLevel.c
@@ -506,13 +506,13 @@ int CCTK_VWarn (int level,
cctk_full_warnings_ptr =
CCTK_ParameterGet ("cctk_full_warnings", "Cactus", &param_type);
- // Default to yes
+ /* Default to yes */
cctk_full_warnings =
cctk_full_warnings_ptr && *cctk_full_warnings_ptr;
highlight_warning_messages_ptr =
CCTK_ParameterGet ("highlight_warning_messages", "Cactus", &param_type);
- // Default to no
+ /* Default to no */
highlight_warning_messages =
! highlight_warning_messages_ptr || *highlight_warning_messages_ptr;
@@ -655,13 +655,13 @@ int CCTK_ParamWarn (const char *thorn, const char *message)
cctk_strong_param_check_ptr =
CCTK_ParameterGet ("cctk_strong_param_check", "Cactus", &param_type);
- // Default to yes
+ /* Default to yes */
cctk_strong_param_check =
cctk_strong_param_check_ptr && *cctk_strong_param_check_ptr;
highlight_warning_messages_ptr =
CCTK_ParameterGet ("highlight_warning_messages", "Cactus", &param_type);
- // Default to no
+ /* Default to no */
highlight_warning_messages =
! highlight_warning_messages_ptr || *highlight_warning_messages_ptr;
@@ -732,13 +732,13 @@ int CCTK_VParamWarn (const char *thorn,
cctk_strong_param_check_ptr =
CCTK_ParameterGet ("cctk_strong_param_check", "Cactus", &param_type);
- // Default to yes
+ /* Default to yes */
cctk_strong_param_check =
cctk_strong_param_check_ptr && *cctk_strong_param_check_ptr;
highlight_warning_messages_ptr =
CCTK_ParameterGet ("highlight_warning_messages", "Cactus", &param_type);
- // Default to no
+ /* Default to no */
highlight_warning_messages =
! highlight_warning_messages_ptr || *highlight_warning_messages_ptr;
@@ -1130,7 +1130,7 @@ void CCTKi_FinaliseParamWarn (void)
{
cctk_strong_param_check_ptr =
CCTK_ParameterGet ("cctk_strong_param_check", "Cactus", &param_type);
- // Default to yes
+ /* Default to yes */
cctk_strong_param_check =
cctk_strong_param_check_ptr && *cctk_strong_param_check_ptr;