|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r64204 - trunk/tools/build/v2/engine/src
From: kbelco_at_[hidden]
Date: 2010-07-20 13:13:20
Author: noel_belcourt
Date: 2010-07-20 13:13:19 EDT (Tue, 20 Jul 2010)
New Revision: 64204
URL: http://svn.boost.org/trac/boost/changeset/64204
Log:
Replace C++ (//) comments with C block comments (/* ... */).
This is one problem killing Itanium builds. One more to go.
Text files modified:
trunk/tools/build/v2/engine/src/jam.c | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
Modified: trunk/tools/build/v2/engine/src/jam.c
==============================================================================
--- trunk/tools/build/v2/engine/src/jam.c (original)
+++ trunk/tools/build/v2/engine/src/jam.c 2010-07-20 13:13:19 EDT (Tue, 20 Jul 2010)
@@ -575,7 +575,7 @@
if (ret == 0 || ret == sizeof(buf)) return NULL;
return strdup (buf);
}
-#elif defined(__APPLE__) // Not tested
+#elif defined(__APPLE__) /* Not tested */
#include <mach-o/dyld.h>
char *executable_path(char *arvg0) {
char buf[1024];
@@ -584,7 +584,7 @@
if (ret != 0) return NULL;
return strdup(buf);
}
-#elif defined(sun) || defined(__sun) // Not tested
+#elif defined(sun) || defined(__sun) /* Not tested */
#include <stdlib.h>
char *executable_path(char *arvg0) {
@@ -614,8 +614,7 @@
}
#else
char *executable_path(char *arvg0) {
- // If argv0 is absolute path, assume it's the right
- // absolute path.
+ /* If argv0 is absolute path, assume it's the right absolute path. */
if (argv0[0] == "/")
return strdup(argv0);
return NULL;
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk