update .clang-format
generated by version 3.8.1 local changes from --style=Google 3a4 > # Generated with clang-format 3.8.1 10c11 < AlignTrailingComments: true --- > AlignTrailingComments: false 15,16c16,17 < AllowShortIfStatementsOnASingleLine: true < AllowShortLoopsOnASingleLine: true --- > AllowShortIfStatementsOnASingleLine: false > AllowShortLoopsOnASingleLine: false 37c38 < BreakBeforeTernaryOperators: true --- > BreakBeforeTernaryOperators: false Change-Id: I4ded7e36fb8bd5407cfba6d1c4f86e0bec620c0c
This commit is contained in:
@@ -45,8 +45,7 @@ class IstreamReader : public Reader {
|
||||
reference derived from `std::istream`.
|
||||
*/
|
||||
template <typename T>
|
||||
explicit IstreamReader(T&& istream)
|
||||
: istream_(new T(std::move(istream))) {}
|
||||
explicit IstreamReader(T&& istream) : istream_(new T(std::move(istream))) {}
|
||||
|
||||
/**
|
||||
Constructs a new reader by moving the provided reader into the new reader.
|
||||
|
||||
Reference in New Issue
Block a user