summaryrefslogtreecommitdiff
path: root/cmdline/cmdline_result.h
diff options
context:
space:
mode:
author Santiago Aboy Solanes <solanes@google.com> 2024-03-08 15:48:44 +0000
committer Santiago Aboy Solanes <solanes@google.com> 2024-03-12 15:52:28 +0000
commit5937cdeeef4639e523ae3cfde3bfce3ccb252921 (patch)
tree8c87fc2983ee01ae68fa79be1afb6cd3886d3053 /cmdline/cmdline_result.h
parent68f3ec8001c46f00f82043d7100c04dee4449c48 (diff)
Remove default cases when all cases are defined
Bug: 328756212 Test: art/test/testrunner/testrunner.py --host --64 --optimizing -b Test: m test-art-host-gtest Change-Id: I9584e1b93e49265b84a9e45c8b283ebaf8ad3eb2
Diffstat (limited to 'cmdline/cmdline_result.h')
-rw-r--r--cmdline/cmdline_result.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/cmdline/cmdline_result.h b/cmdline/cmdline_result.h
index 0ae1145a52..a21e3b4559 100644
--- a/cmdline/cmdline_result.h
+++ b/cmdline/cmdline_result.h
@@ -92,8 +92,6 @@ static inline std::ostream& operator<<(std::ostream& stream, CmdlineResult::Stat
case CmdlineResult::kUnknown:
stream << "kUnknown";
break;
- default:
- UNREACHABLE();
}
return stream;
}