Index: src/libcfa/concurrency/monitor
===================================================================
--- src/libcfa/concurrency/monitor	(revision 0cf5b7992194658ccc6f30eae5069589577633a3)
+++ src/libcfa/concurrency/monitor	(revision 0ac366bb815a57d58e603b8e1ef744766f2255e4)
@@ -27,14 +27,14 @@
 };
 
-static inline void ?{}(monitor_desc & this) {
-	(this.lock){};
-	(this.entry_queue){};
-	(this.signal_stack){};
-	this.owner         = NULL;
-	this.recursion     = 0;
-	this.mask.accepted = NULL;
-	this.mask.data     = NULL;
-	this.mask.size     = 0;
-	this.dtor_node     = NULL;
+static inline void ?{}(monitor_desc & this) with( this ) {
+	lock{};
+	entry_queue{};
+	signal_stack{};
+	owner         = NULL;
+	recursion     = 0;
+	mask.accepted = NULL;
+	mask.data     = NULL;
+	mask.size     = 0;
+	dtor_node     = NULL;
 }
 
