From ee7684abfc66085f425565feba77680625427429 Mon Sep 17 00:00:00 2001 From: scribam Date: Sun, 14 Mar 2021 19:36:25 +0100 Subject: [PATCH] clang-tidy: run readability-redundant-string-init --- core/input/gamepad_device.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/input/gamepad_device.h b/core/input/gamepad_device.h index 7304876d3..4883acae4 100644 --- a/core/input/gamepad_device.h +++ b/core/input/gamepad_device.h @@ -76,7 +76,7 @@ protected: bool is_detecting_input() { return _input_detected != nullptr; } std::string _name; - std::string _unique_id = ""; + std::string _unique_id; std::shared_ptr input_mapper; std::map axis_min_values; std::map axis_ranges;