Skip to content

Commit

Permalink
Merge pull request #2 from niklasblabla/patch-1
Browse files Browse the repository at this point in the history
Reorder variable declarations to omit -Wreorder
  • Loading branch information
alxvasilev committed Feb 13, 2015
2 parents 190c20b + 1ea9ddd commit 4c7d609
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mingw.condition_variable.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ class condition_variable_any
{
protected:
recursive_mutex mMutex;
atomic<int> mNumWaiters;
HANDLE mSemaphore;
HANDLE mWakeEvent;
atomic<int> mNumWaiters;
public:
typedef HANDLE native_handle_type;
native_handle_type native_handle() {return mSemaphore;}
Expand Down

0 comments on commit 4c7d609

Please sign in to comment.