commit | 1eea11335a45d50d7a95b29d65dae6471729223c | [log] [tgz] |
---|---|---|
author | Brian Silverman <bsilver16384@gmail.com> | Sun Sep 02 16:29:53 2018 -0700 |
committer | Brian Silverman <bsilver16384@gmail.com> | Sun Sep 02 17:56:35 2018 -0700 |
tree | 343e2a4c7deaf180bd1d9b865e329789a69de2b7 | |
parent | 7ab1b0eaa573265d445475c4f0b8001bfc9d760e [diff] |
Annotate missing break statement New compiler I'm working on switching to points this out. Change-Id: I49023c2e5d4df48b06d1cc156687d8c93375ded7
diff --git a/motors/seems_reasonable/spring.cc b/motors/seems_reasonable/spring.cc index 1127aa9..4448b33 100644 --- a/motors/seems_reasonable/spring.cc +++ b/motors/seems_reasonable/spring.cc
@@ -62,6 +62,8 @@ goal_ = NextGoal(kLoadGoal); Load(); } + // TODO(Austin): This should be a break, right? + // fallthrough case State::STUCK_UNLOAD: if (force_move) { ForceMove();