Merge pull request #102 from jrahlf/reduce_includes

Remove unneeded includes
This commit is contained in:
Daniel Lemire 2021-09-05 19:04:31 -04:00 committed by GitHub
commit 25b240a02d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 3 additions and 4 deletions

View File

@ -1,7 +1,6 @@
#ifndef FASTFLOAT_ASCII_NUMBER_H #ifndef FASTFLOAT_ASCII_NUMBER_H
#define FASTFLOAT_ASCII_NUMBER_H #define FASTFLOAT_ASCII_NUMBER_H
#include <cstdio>
#include <cctype> #include <cctype>
#include <cstdint> #include <cstdint>
#include <cstring> #include <cstring>

View File

@ -7,7 +7,6 @@
#include <cinttypes> #include <cinttypes>
#include <cmath> #include <cmath>
#include <cstdint> #include <cstdint>
#include <cstdio>
#include <cstdlib> #include <cstdlib>
#include <cstring> #include <cstring>

View File

@ -1,5 +1,6 @@
#ifndef FASTFLOAT_FAST_TABLE_H #ifndef FASTFLOAT_FAST_TABLE_H
#define FASTFLOAT_FAST_TABLE_H #define FASTFLOAT_FAST_TABLE_H
#include <cstdint> #include <cstdint>
namespace fast_float { namespace fast_float {
@ -695,4 +696,4 @@ using powers = powers_template<>;
} }
#endif #endif

View File

@ -1,10 +1,10 @@
#ifndef FASTFLOAT_PARSE_NUMBER_H #ifndef FASTFLOAT_PARSE_NUMBER_H
#define FASTFLOAT_PARSE_NUMBER_H #define FASTFLOAT_PARSE_NUMBER_H
#include "ascii_number.h" #include "ascii_number.h"
#include "decimal_to_binary.h" #include "decimal_to_binary.h"
#include "simple_decimal_conversion.h" #include "simple_decimal_conversion.h"
#include <cassert>
#include <cmath> #include <cmath>
#include <cstring> #include <cstring>
#include <limits> #include <limits>