Skip to content

Commit 8d1164a

Browse files
committed
fix formatting for updated CI clang-format
1 parent 258059d commit 8d1164a

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

include/adm/detail/named_type_validators.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ namespace adm {
5151
static void validate(const T& value) {
5252
if (value > maxValue || value < minValue) {
5353
std::stringstream msg;
54-
msg << "'" << value << "'"
55-
<< " is not in range [" << minValue << "," << maxValue << "]";
54+
msg << "'" << value << "'" << " is not in range [" << minValue << ","
55+
<< maxValue << "]";
5656
throw OutOfRangeError(msg.str());
5757
}
5858
}

include/adm/elements/audio_object.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -259,8 +259,8 @@ namespace adm {
259259
/// @brief Add reference to a complementary AudioObject
260260
ADM_EXPORT bool addComplementary(std::shared_ptr<AudioObject> object);
261261
/// @brief Get references to complementary AudioObjects
262-
ADM_EXPORT const std::vector<std::shared_ptr<AudioObject>>
263-
&getComplementaryObjects() const;
262+
ADM_EXPORT const std::vector<std::shared_ptr<AudioObject>> &
263+
getComplementaryObjects() const;
264264
/// @brief Remove reference to a complementary AudioObject
265265
ADM_EXPORT void removeComplementary(
266266
const std::shared_ptr<AudioObject> &object);

include/adm/utilities/element_io.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
namespace adm {
55

66
template <class Element>
7-
auto operator<<(std::ostream& os, const Element& element)
8-
-> decltype(element.print(os), os) {
7+
auto operator<<(std::ostream& os,
8+
const Element& element) -> decltype(element.print(os), os) {
99
element.print(os);
1010
return os;
1111
}

0 commit comments

Comments
 (0)