Skip to content

Commit

Permalink
fixed win32/64 builds after 0a3a1d7
Browse files Browse the repository at this point in the history
  • Loading branch information
opdenkamp committed Mar 11, 2015
1 parent 0828040 commit 707bd51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/platform/threads/mutex.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ namespace PLATFORM

private:
inline PreventCopy(const PreventCopy &c) { *this = c; }
inline PreventCopy &operator=(const PreventCopy &c){ *this = c; return *this; }
inline PreventCopy &operator=(const PreventCopy & UNUSED(c)){ return *this; }
};

template <typename _Predicate>
Expand Down

0 comments on commit 707bd51

Please sign in to comment.