mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 21:13:35 +00:00
Format all C++ and Java code via clang-format
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
This commit is contained in:
@@ -6,8 +6,8 @@
|
||||
|
||||
#include <cstddef>
|
||||
#include <optional>
|
||||
#include <utility>
|
||||
#include <string>
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
namespace generator
|
||||
@@ -16,9 +16,10 @@ size_t static const kAffiliationsBufferSize = 512;
|
||||
|
||||
struct ProcessedData
|
||||
{
|
||||
explicit ProcessedData(feature::FeatureBuilder::Buffer && buffer,
|
||||
std::vector<std::string> && affiliations)
|
||||
: m_buffer(std::move(buffer)), m_affiliations(std::move(affiliations)) {}
|
||||
explicit ProcessedData(feature::FeatureBuilder::Buffer && buffer, std::vector<std::string> && affiliations)
|
||||
: m_buffer(std::move(buffer))
|
||||
, m_affiliations(std::move(affiliations))
|
||||
{}
|
||||
|
||||
feature::FeatureBuilder::Buffer m_buffer;
|
||||
std::vector<std::string> m_affiliations;
|
||||
|
||||
Reference in New Issue
Block a user