NFC: Fix astyle nonsense.

pull/7822/head
Vincent Coubard 2018-08-28 17:46:48 +01:00
parent 0fa481ace6
commit ab810b219e
2 changed files with 11 additions and 10 deletions

View File

@ -99,13 +99,14 @@ bool Mime::append_as_record(
) const
{
return message_builder.append_record(
RecordType(
RecordType::media_type,
get_mime_type()
),
get_mime_content(),
is_last_record
);
RecordType(
RecordType::media_type,
get_mime_type()
),
get_mime_content(),
is_last_record
);
}
size_t Mime::get_record_size() const
{

View File

@ -125,9 +125,9 @@ Span<const uint8_t> Text::get_text() const
size_t language_code_size = get_language_code().size();
return make_const_Span(
_text_record + header_size + language_code_size,
_text_record_size - header_size - language_code_size
);
_text_record + header_size + language_code_size,
_text_record_size - header_size - language_code_size
);
}
void Text::move_data(uint8_t *text, size_t size)