Reviewers: Mikhail Naganov, Message: TBR=mikhail.naganov
Description: - Fix build break due to warning about control reaching end of non-void function. Please review this at http://codereview.chromium.org/115245 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/api.cc Index: src/api.cc =================================================================== --- src/api.cc (revision 1920) +++ src/api.cc (working copy) @@ -3126,6 +3126,7 @@ #ifdef ENABLE_LOGGING_AND_PROFILING return i::Logger::GetLogLines(from_pos, dest_buf, max_size); #endif + return 0; } String::Utf8Value::Utf8Value(v8::Handle<v8::Value> obj) { --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
