commit | dc2f1b6e5414439781334667b2c459419c91b997 | [log] [tgz] |
---|---|---|
author | William A. Kennington III <wak@google.com> | Thu May 13 21:20:19 2021 -0700 |
committer | William A. Kennington III <wak@google.com> | Thu May 13 21:39:53 2021 -0700 |
tree | 3c4098d8d5af14b8664370f5e5358cd6380f006a | |
parent | 162db3a6b9630b21cb9f96b61e712a4a5a56116b [diff] |
types: Remove unused assignment clang-tidy warns about this harmless but unused assignment. Change-Id: I5255dd6b49775c4515ceab753295d915a390f5c9 Signed-off-by: William A. Kennington III <wak@google.com>
diff --git a/types.hpp b/types.hpp index 3279256..082d588 100644 --- a/types.hpp +++ b/types.hpp
@@ -72,7 +72,7 @@ { void operator()(sd_event* event) const { - event = sd_event_unref(event); + sd_event_unref(event); } }; using EventPtr = std::unique_ptr<sd_event, EventDeleter>;