You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
975 B
C++
41 lines
975 B
C++
2 years ago
|
// Copyright 2018 Ulf Adams
|
||
|
//
|
||
|
// The contents of this file may be used under the terms of the Apache License,
|
||
|
// Version 2.0.
|
||
|
//
|
||
|
// (See accompanying file LICENSE-Apache or copy at
|
||
|
// http://www.apache.org/licenses/LICENSE-2.0)
|
||
|
//
|
||
|
// Alternatively, the contents of this file may be used under the terms of
|
||
|
// the Boost Software License, Version 1.0.
|
||
|
// (See accompanying file LICENSE-Boost or copy at
|
||
|
// https://www.boost.org/LICENSE_1_0.txt)
|
||
|
//
|
||
|
// Unless required by applicable law or agreed to in writing, this software
|
||
|
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||
|
// KIND, either express or implied.
|
||
|
|
||
|
/*
|
||
|
This is a derivative work
|
||
|
*/
|
||
|
|
||
|
#ifndef BOOST_JSON_DETAIL_RYU_HPP
|
||
|
#define BOOST_JSON_DETAIL_RYU_HPP
|
||
|
|
||
|
#include <boost/json/detail/config.hpp>
|
||
|
|
||
|
BOOST_JSON_NS_BEGIN
|
||
|
namespace detail {
|
||
|
|
||
|
namespace ryu {
|
||
|
|
||
|
BOOST_JSON_DECL
|
||
|
int d2s_buffered_n(double f, char* result) noexcept;
|
||
|
|
||
|
} // ryu
|
||
|
|
||
|
} // detail
|
||
|
BOOST_JSON_NS_END
|
||
|
|
||
|
#endif
|