Fix clang format (#854)

Fix invocation of clang-format in CMakeLists and apply clang-format.
This commit is contained in:
Ian Taylor
2020-04-29 10:40:33 -04:00
committed by GitHub
parent 7083db28b3
commit 9f2781b527
16 changed files with 29 additions and 26 deletions

View File

@@ -17,9 +17,7 @@ Parser::Parser(std::istream& in) : Parser() { Load(in); }
Parser::~Parser() = default;
Parser::operator bool() const {
return m_pScanner && !m_pScanner->empty();
}
Parser::operator bool() const { return m_pScanner && !m_pScanner->empty(); }
void Parser::Load(std::istream& in) {
m_pScanner.reset(new Scanner(in));