Reviewers: Michail Naganov, Description: Fix Windows build.
TBP=mnaganov Please review this at http://codereview.chromium.org/160632 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/log.cc Index: src/log.cc =================================================================== --- src/log.cc (revision 2620) +++ src/log.cc (working copy) @@ -989,7 +989,7 @@ FLAG_log_gc = false; } // Turn off logging if no active modules remain. - if (active_modules & ~flags == PROFILER_MODULE_NONE) { + if ((active_modules & ~flags) == PROFILER_MODULE_NONE) { is_logging_ = false; } } --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
