diff options
author | Lioncash <mathew1800@gmail.com> | 2020-07-12 15:41:32 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-07-12 15:41:35 -0400 |
commit | 839c91cd14d65d0d62a946078aa62657530fd55a (patch) | |
tree | 97d4c63c1e6e056663380725d89484f3374a07ff /src/input_common/gcadapter/gc_poller.cpp | |
parent | a8ba6dc3c9f876835d706d90b27249e2984d526e (diff) |
gc_poller: Get rid of undefined behavior in Create()
Ensures that the function always has returns in all control paths.
Diffstat (limited to 'src/input_common/gcadapter/gc_poller.cpp')
-rw-r--r-- | src/input_common/gcadapter/gc_poller.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/input_common/gcadapter/gc_poller.cpp b/src/input_common/gcadapter/gc_poller.cpp index ead1a1b0e7..d9296c496f 100644 --- a/src/input_common/gcadapter/gc_poller.cpp +++ b/src/input_common/gcadapter/gc_poller.cpp @@ -6,6 +6,7 @@ #include <list> #include <mutex> #include <utility> +#include "common/assert.h" #include "common/threadsafe_queue.h" #include "input_common/gcadapter/gc_adapter.h" #include "input_common/gcadapter/gc_poller.h" @@ -94,6 +95,9 @@ std::unique_ptr<Input::ButtonDevice> GCButtonFactory::Create(const Common::Param return std::make_unique<GCAxisButton>(port, axis, threshold, trigger_if_greater, adapter.get()); } + + UNREACHABLE(); + return nullptr; } Common::ParamPackage GCButtonFactory::GetNextInput() { |