removed dev code

This commit is contained in:
Francois Chabot 2020-06-05 16:39:36 -04:00
parent f072b97eb2
commit a3fe169910
2 changed files with 2 additions and 10 deletions

View File

@ -15,10 +15,6 @@ namespace nlohmann
namespace detail
{
template<typename T>
struct output_adapter_impl;
// Output to a string, append() is faster than insert(str.end(),...) on some compilers,
// so it's worth having a special override for it.
template<typename StringType>
@ -46,7 +42,7 @@ struct string_output_adapter
template<class IteratorType>
struct iterator_output_adapter
{
using char_type = char; //?????????????????????????
using char_type = char; // N.B. This can't be right, but there's no way to infer that
iterator_output_adapter(IteratorType dst) : dst_(dst) {}

View File

@ -12096,10 +12096,6 @@ namespace nlohmann
namespace detail
{
template<typename T>
struct output_adapter_impl;
// Output to a string, append() is faster than insert(str.end(),...) on some compilers,
// so it's worth having a special override for it.
template<typename StringType>
@ -12127,7 +12123,7 @@ struct string_output_adapter
template<class IteratorType>
struct iterator_output_adapter
{
using char_type = char; //?????????????????????????
using char_type = char; // N.B. This can't be right, but there's no way to infer that
iterator_output_adapter(IteratorType dst) : dst_(dst) {}