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

Unified Diff: src/shared/platform/win/condition_variable.cc

Issue 1221833003: Change initializer list order to match field order. (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/shared/platform/win/condition_variable.cc
diff --git a/src/shared/platform/win/condition_variable.cc b/src/shared/platform/win/condition_variable.cc
index 40b6656687b708d2b0a1338468e8b18ca9765865..456ce5459e222fdf336cae59a626982c7f2605a4 100644
--- a/src/shared/platform/win/condition_variable.cc
+++ b/src/shared/platform/win/condition_variable.cc
@@ -27,8 +27,8 @@ static const int64_t kMicrosecondsPerSecond =
NaCl::ConditionVariable::ConditionVariable()
: run_state_(RUNNING),
- allocation_counter_(0),
- recycling_list_size_(0) {
+ recycling_list_size_(0),
+ allocation_counter_(0) {
}
NaCl::ConditionVariable::~ConditionVariable() {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698