BlockingLoop: fix unhandled enum value warning

Fixes compiler warning:

```
Source/Core/Common/BlockingLoop.h:212:13: warning: enumeration value 'kNonBlock' not handled in switch [-Wswitch]
    switch (mode)
            ^
```
This commit is contained in:
Michael Maltese 2017-06-26 23:33:45 -07:00
parent 4ad46f1c7c
commit 033492717c
1 changed files with 2 additions and 0 deletions

View File

@ -211,6 +211,8 @@ public:
switch (mode) switch (mode)
{ {
case kNonBlock:
break;
case kBlock: case kBlock:
Wait(); Wait();
break; break;