Skip to content

Commit

Permalink
Order the initializers correctly.
Browse files Browse the repository at this point in the history
git-svn-id: http://googletest.googlecode.com/svn/trunk@743 861a406c-534a-0410-8894-cb66d6ee9925
  • Loading branch information
[email protected] committed Jul 27, 2015
1 parent c4fa6f3 commit 4a92f82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gtest-port.cc
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,8 @@ void Notification::WaitForNotification() {
}

Mutex::Mutex()
: type_(kDynamic),
owner_thread_id_(0),
: owner_thread_id_(0),
type_(kDynamic),
critical_section_init_phase_(0),
critical_section_(new CRITICAL_SECTION) {
::InitializeCriticalSection(critical_section_);
Expand Down

0 comments on commit 4a92f82

Please sign in to comment.