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
1 changed files with 2 additions and 0 deletions

View File

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