Skip to content

Commit a1e272f

Browse files
committed
lint
1 parent 447ee0b commit a1e272f

File tree

4 files changed

+2
-57
lines changed

4 files changed

+2
-57
lines changed

.github/workflows/ubuntu20-cxx20.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/ubuntu20-fastmath.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.github/workflows/ubuntu20.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

tests/p2497.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
int main() {
77
std::string input = "3.1416 xyz ";
88
double result;
9-
if(auto answer = fast_float::from_chars(input.data(), input.data() + input.size(), result)) {
9+
if (auto answer = fast_float::from_chars(
10+
input.data(), input.data() + input.size(), result)) {
1011
std::cout << "parsed the number " << result << std::endl;
1112
return EXIT_SUCCESS;
1213
}

0 commit comments

Comments
 (0)