ManaPlus
Static Public Member Functions
Catch::StringMaker< T * > Struct Template Reference

#include <catch.hpp>

Static Public Member Functions

template<typename U >
static std::string convert (U *p)
 

Detailed Description

template<typename T>
struct Catch::StringMaker< T * >

Definition at line 1680 of file catch.hpp.

Member Function Documentation

◆ convert()

template<typename T >
template<typename U >
static std::string Catch::StringMaker< T * >::convert ( U *  p)
inlinestatic

Definition at line 1682 of file catch.hpp.

1682  {
1683  if( !p )
1684  return "NULL";
1685  else
1686  return Detail::rawMemoryToString( p );
1687  }
std::string rawMemoryToString(const void *object, std::size_t size)

References Catch::Detail::rawMemoryToString().


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