mirror of
https://github.com/boostorg/charconv.git
synced 2026-02-13 12:22:18 +00:00
11 lines
319 B
C++
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 };
|
|
}
|