Files
charconv/src/to_chars.cpp
2022-12-29 19:41:33 +02:00

11 lines
319 B
C++

// Copyright 2022 Peter Dimov
// Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt
#include <boost/charconv/to_chars.hpp>
boost::charconv::to_chars_result boost::charconv::to_chars( char* first, char* /*last*/, int /*value*/, int /*base*/ )
{
return { first, 0 };
}