Reviewers: Sven Panne,

Description:
Fix compilation.

[email protected]
BUG=

Please review this at https://codereview.chromium.org/61163007/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+2, -2 lines):
  M src/isolate.h


Index: src/isolate.h
diff --git a/src/isolate.h b/src/isolate.h
index 7544a9c21da4a3491c2c48a3881638c417d97b33..1d45de97b8ee88009c9aa8d3183ecc5a3dbbb0d3 100644
--- a/src/isolate.h
+++ b/src/isolate.h
@@ -1108,7 +1108,7 @@ class Isolate {
     return optimizing_compiler_thread_ != NULL;
   }

-  bool concurrent_osr_enabled() {
+  bool concurrent_osr_enabled() const {
     // Thread is only available with flag enabled.
     ASSERT(optimizing_compiler_thread_ == NULL ||
            FLAG_concurrent_recompilation);
@@ -1119,7 +1119,7 @@ class Isolate {
     return optimizing_compiler_thread_;
   }

-  bool num_sweeper_threads() {
+  int num_sweeper_threads() const {
     return num_sweeper_threads_;
   }



--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to