Index: webrtc/base/sigslot.h |
diff --git a/webrtc/base/sigslot.h b/webrtc/base/sigslot.h |
index b1a6e8cba3979e630b5a7b5dfa8f224a459315f2..4534ec9dae4c4f5af97c068d1949ebf682d00c5c 100644 |
--- a/webrtc/base/sigslot.h |
+++ b/webrtc/base/sigslot.h |
@@ -216,13 +216,9 @@ namespace sigslot { |
class multi_threaded_local |
{ |
public: |
- multi_threaded_local() |
- { |
- pthread_mutex_init(&m_mutex, NULL); |
- } |
- multi_threaded_local(const multi_threaded_local&) |
- { |
- pthread_mutex_init(&m_mutex, NULL); |
+ multi_threaded_local() { pthread_mutex_init(&m_mutex, nullptr); } |
+ multi_threaded_local(const multi_threaded_local&) { |
+ pthread_mutex_init(&m_mutex, nullptr); |
} |
~multi_threaded_local() |
{ |