File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -51,8 +51,8 @@ namespace adm {
51
51
static void validate (const T& value) {
52
52
if (value > maxValue || value < minValue) {
53
53
std::stringstream msg;
54
- msg << " '" << value << " '"
55
- << " is not in range [ " << minValue << " , " << maxValue << " ]" ;
54
+ msg << " '" << value << " '" << " is not in range [ " << minValue << " , "
55
+ << maxValue << " ]" ;
56
56
throw OutOfRangeError (msg.str ());
57
57
}
58
58
}
Original file line number Diff line number Diff line change @@ -259,8 +259,8 @@ namespace adm {
259
259
// / @brief Add reference to a complementary AudioObject
260
260
ADM_EXPORT bool addComplementary (std::shared_ptr<AudioObject> object);
261
261
// / @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 ;
264
264
// / @brief Remove reference to a complementary AudioObject
265
265
ADM_EXPORT void removeComplementary (
266
266
const std::shared_ptr<AudioObject> &object);
Original file line number Diff line number Diff line change 4
4
namespace adm {
5
5
6
6
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) {
9
9
element.print (os);
10
10
return os;
11
11
}
You can’t perform that action at this time.
0 commit comments