Changeset 20915 for lang/cplusplus
- Timestamp:
- 10/07/08 19:48:20 (2 months ago)
- Files:
-
- 1 modified
-
lang/cplusplus/llv8call/trunk/v8ext/v8ext.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lang/cplusplus/llv8call/trunk/v8ext/v8ext.cc
r20787 r20915 143 143 String::Utf8Value libname(args[0]); 144 144 String::Utf8Value _libpath(args.This()->Get(String::New("LibraryPath"))); 145 char *libpath = *_libpath; 145 std::string slibpath = std::string((char*) *_libpath); 146 slibpath += PATHSEP; 147 char* libpath = (char*) slibpath.c_str(); 146 148 147 149 char* p; 148 while ((p = strchr(libpath, ':')) > 0) {150 while ((p = strchr(libpath, PATHSEP[0])) > 0) { 149 151 *p = '\0'; 150 152
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)