Skip to content

Commit 46d38ee

Browse files
github actionb-chmiel
github action
authored andcommitted
Apply 'make format'
1 parent c57ac63 commit 46d38ee

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/V3EmitMk.cpp

+1-3
Original file line numberDiff line numberDiff line change
@@ -995,9 +995,7 @@ void V3EmitMk::debugTestConcatenation(const char* inputFile) {
995995
EmitMk::FilenameWithScore current{};
996996
while ((*ifp) >> current.m_score >> std::ws) {
997997
char ch;
998-
while (ch = ifp->get(), ch && !std::isspace(ch)) {
999-
current.m_filename.push_back(ch);
1000-
}
998+
while (ch = ifp->get(), ch && !std::isspace(ch)) { current.m_filename.push_back(ch); }
1001999
totalScore += current.m_score;
10021000
inputList.push_back(std::move(current));
10031001
current = EmitMk::FilenameWithScore{};

0 commit comments

Comments
 (0)