Github User Fetcher 1.0.0
C Application with Server and GUI
Loading...
Searching...
No Matches
doctest::detail::filldata< T > Struct Template Reference

#include <doctest.h>

Static Public Member Functions

static void fill (std::ostream *stream, const T &in)
 

Detailed Description

template<typename T>
struct doctest::detail::filldata< T >

Definition at line 1150 of file doctest.h.

Member Function Documentation

◆ fill()

template<typename T >
static void doctest::detail::filldata< T >::fill ( std::ostream * stream,
const T & in )
inlinestatic

Definition at line 1152 of file doctest.h.

1152 {
1153#if defined(_MSC_VER) && _MSC_VER <= 1900
1154 insert_hack_t<T>::insert(*stream, in);
1155#else
1156 operator<<(*stream, in);
1157#endif
1158 }
basic_ostream< char, traits > & operator<<(basic_ostream< char, traits > &, const char *)

The documentation for this struct was generated from the following file: