Merge pull request #5704 from ligfx/fixblockingloopwarning

BlockingLoop: fix unhandled enum value warning
This commit is contained in:
shuffle2 2017-06-27 00:10:26 -07:00 committed by GitHub
commit 7a9ac9aa63

View file

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