Skip to content

Commit 25b240a

Browse files
authored
Merge pull request #102 from jrahlf/reduce_includes
Remove unneeded includes
2 parents 8c4405e + 162a37b commit 25b240a

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

include/fast_float/ascii_number.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#ifndef FASTFLOAT_ASCII_NUMBER_H
22
#define FASTFLOAT_ASCII_NUMBER_H
33

4-
#include <cstdio>
54
#include <cctype>
65
#include <cstdint>
76
#include <cstring>

include/fast_float/decimal_to_binary.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
#include <cinttypes>
88
#include <cmath>
99
#include <cstdint>
10-
#include <cstdio>
1110
#include <cstdlib>
1211
#include <cstring>
1312

include/fast_float/fast_table.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#ifndef FASTFLOAT_FAST_TABLE_H
22
#define FASTFLOAT_FAST_TABLE_H
3+
34
#include <cstdint>
45

56
namespace fast_float {
@@ -695,4 +696,4 @@ using powers = powers_template<>;
695696

696697
}
697698

698-
#endif
699+
#endif

include/fast_float/parse_number.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#ifndef FASTFLOAT_PARSE_NUMBER_H
22
#define FASTFLOAT_PARSE_NUMBER_H
3+
34
#include "ascii_number.h"
45
#include "decimal_to_binary.h"
56
#include "simple_decimal_conversion.h"
67

7-
#include <cassert>
88
#include <cmath>
99
#include <cstring>
1010
#include <limits>

0 commit comments

Comments
 (0)