Add default return value

pull/541/head
Andrei Kortunov 6 years ago
parent f1eb702851
commit a615076c61

@ -17,7 +17,8 @@ namespace DetourNavigator
inline std::ostream& operator <<(std::ostream& stream, const Flag value)
{
switch (value) {
switch (value)
{
case Flag_none:
return stream << "none";
case Flag_walk:
@ -27,6 +28,8 @@ namespace DetourNavigator
case Flag_openDoor:
return stream << "openDoor";
}
return stream;
}
struct WriteFlags

Loading…
Cancel
Save