mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-03 08:46:46 +00:00
refactor: Align identifier naming with develop
Apply readability-identifier-naming clang-tidy check to branch-modified files (and their transitive includes) in preparation for merging develop. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -58,13 +58,13 @@ public:
|
||||
|
||||
template <class... Args>
|
||||
void
|
||||
emplace_back(Args&&... args);
|
||||
emplaceBack(Args&&... args);
|
||||
|
||||
void
|
||||
push_back(STObject const& object);
|
||||
pushBack(STObject const& object);
|
||||
|
||||
void
|
||||
push_back(STObject&& object);
|
||||
pushBack(STObject&& object);
|
||||
|
||||
iterator
|
||||
begin();
|
||||
@@ -180,19 +180,19 @@ STArray::back() const
|
||||
|
||||
template <class... Args>
|
||||
inline void
|
||||
STArray::emplace_back(Args&&... args)
|
||||
STArray::emplaceBack(Args&&... args)
|
||||
{
|
||||
v_.emplace_back(std::forward<Args>(args)...);
|
||||
}
|
||||
|
||||
inline void
|
||||
STArray::push_back(STObject const& object)
|
||||
STArray::pushBack(STObject const& object)
|
||||
{
|
||||
v_.push_back(object);
|
||||
}
|
||||
|
||||
inline void
|
||||
STArray::push_back(STObject&& object)
|
||||
STArray::pushBack(STObject&& object)
|
||||
{
|
||||
v_.push_back(std::move(object));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user