Warning, file /include/absl/strings/internal/str_format/float_conversion.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015 #ifndef ABSL_STRINGS_INTERNAL_STR_FORMAT_FLOAT_CONVERSION_H_
0016 #define ABSL_STRINGS_INTERNAL_STR_FORMAT_FLOAT_CONVERSION_H_
0017
0018 #include "absl/strings/internal/str_format/extension.h"
0019
0020 namespace absl {
0021 ABSL_NAMESPACE_BEGIN
0022 namespace str_format_internal {
0023
0024 bool ConvertFloatImpl(float v, const FormatConversionSpecImpl &conv,
0025 FormatSinkImpl *sink);
0026
0027 bool ConvertFloatImpl(double v, const FormatConversionSpecImpl &conv,
0028 FormatSinkImpl *sink);
0029
0030 bool ConvertFloatImpl(long double v, const FormatConversionSpecImpl &conv,
0031 FormatSinkImpl *sink);
0032
0033 }
0034 ABSL_NAMESPACE_END
0035 }
0036
0037 #endif