commit | a3b8c14ec69feb80665b1f4aabb5ddac99169535 | [log] [tgz] |
---|---|---|
author | Matt Buckley <mattbuckley@google.com> | Tue Nov 19 20:43:25 2024 -0800 |
committer | Matt Buckley <mattbuckley@google.com> | Tue Nov 19 20:43:25 2024 -0800 |
tree | af70fd853a38ac0b0cf29bca0eee7b1e9b039c6d | |
parent | 0e235460766007b5326dc8849ad553098b53b1c1 [diff] [blame] |
Add default case to switch statment Flag: EXEMPT NDK Bug: no Test: manual Change-Id: I5b30c28c575778270f44c8327752f7439d1f668e
diff --git a/native/android/performance_hint.cpp b/native/android/performance_hint.cpp index c67e93c..883e139 100644 --- a/native/android/performance_hint.cpp +++ b/native/android/performance_hint.cpp
@@ -881,6 +881,8 @@ case hal::SessionMode::GRAPHICS_PIPELINE: traceGraphicsPipeline(isEnabled); break; + default: + break; } } }