Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Unified Diff: src/base/atomic-utils.h

Issue 2190333002: Teach compiler jobs how to actually parse (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/base/atomic-utils.h
diff --git a/src/base/atomic-utils.h b/src/base/atomic-utils.h
index ac90fd98a7130a2ec26ca6680f9c2acad3f08a57..6731a810f18c06f7929c21e2ec9c7f5466bccbe0 100644
--- a/src/base/atomic-utils.h
+++ b/src/base/atomic-utils.h
@@ -52,7 +52,7 @@ class AtomicValue {
explicit AtomicValue(T initial)
: value_(cast_helper<T>::to_storage_type(initial)) {}
- V8_INLINE T Value() {
+ V8_INLINE T Value() const {
return cast_helper<T>::to_return_type(base::Acquire_Load(&value_));
}
« no previous file with comments | « no previous file | src/compiler-dispatcher/compiler-dispatcher-job.h » ('j') | src/compiler-dispatcher/compiler-dispatcher-job.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698