Skip to content

Commit 1e631b1

Browse files
committed
fix: resolve readability-redundant-string-init warning
1 parent 295a4bc commit 1e631b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/stats/client.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ class StatsdClientImpl final : public StatsdClient
8181
std::unique_ptr<RawSender> m_sender{nullptr};
8282

8383
/* Phrase prepended to keys */
84-
const std::string m_prefix{""};
84+
const std::string m_prefix{};
8585
/* Phrase appended to keys */
86-
const std::string m_suffix{""};
86+
const std::string m_suffix{};
8787
};
8888
} // anonymous namespace
8989

0 commit comments

Comments
 (0)