No public description

PiperOrigin-RevId: 820757644
diff --git a/fuzztest/internal/meta.h b/fuzztest/internal/meta.h
index c36d80b..af4b3ae 100644
--- a/fuzztest/internal/meta.h
+++ b/fuzztest/internal/meta.h
@@ -668,8 +668,7 @@
 constexpr std::optional<int> ApplyIndexFor(F f) {
   if constexpr (ApplyIndex<I>(f)) {
     return I;
-  }
-  if constexpr (I == 0) {
+  } else if constexpr (I == 0) {
     return std::nullopt;
   } else {
     return ApplyIndexFor<I - 1>(f);