| Index: samples/lineprocessor.cc
|
| ===================================================================
|
| --- samples/lineprocessor.cc (revision 11348)
|
| +++ samples/lineprocessor.cc (working copy)
|
| @@ -1,4 +1,4 @@
|
| -// Copyright 2009 the V8 project authors. All rights reserved.
|
| +// Copyright 2012 the V8 project authors. All rights reserved.
|
| // Redistribution and use in source and binary forms, with or without
|
| // modification, are permitted provided that the following conditions are
|
| // met:
|
| @@ -434,9 +434,9 @@
|
| }
|
| if (res == NULL) {
|
| v8::Handle<v8::Primitive> t = v8::Undefined();
|
| - return reinterpret_cast<v8::Handle<v8::String>&>(t);
|
| + return v8::Handle<v8::String>(v8::String::Cast(*t));
|
| }
|
| - // remove newline char
|
| + // Remove newline char
|
| for (char* pos = buffer; *pos != '\0'; pos++) {
|
| if (*pos == '\n') {
|
| *pos = '\0';
|
|
|