Lioncash 672665dec0 AsyncRequests: In-class initialize class members
Prior to this change, it's possible for m_wake_me_up_again to be used
while it's in an uninitialized state from the exposed API.

e.g.

- Using SetEnable after construction would perform an uninitialized read.
- Using PushEvent would perform an uninitialized read by way of operator |=.

internally, an uninitialized read can happen if PullEventsInternal() is
executed before other functions.

Just to avoid the whole possibility of performing uninitialized reads,
we just give the class member a default value of false.
2018-04-01 19:06:43 -04:00
..
2017-05-26 00:53:58 -07:00
2018-03-14 22:03:12 -04:00
2017-03-26 23:08:33 -04:00
2017-06-15 21:34:04 +02:00
2017-08-22 16:40:34 +02:00
2017-11-17 19:47:56 -06:00
2018-03-26 01:57:41 +10:00