Xmipp  v3.23.11-Nereus
Static Public Member Functions | List of all members
testing::internal::UniversalTersePrinter< const char * > Class Template Reference

#include <gtest-printers.h>

Static Public Member Functions

static void Print (const char *str, ::std::ostream *os)
 

Detailed Description

template<>
class testing::internal::UniversalTersePrinter< const char * >

Definition at line 985 of file gtest-printers.h.

Member Function Documentation

◆ Print()

static void testing::internal::UniversalTersePrinter< const char * >::Print ( const char *  str,
::std::ostream *  os 
)
inlinestatic

Definition at line 987 of file gtest-printers.h.

987  {
988  if (str == nullptr) {
989  *os << "NULL";
990  } else {
991  UniversalPrint(std::string(str), os);
992  }
993  }
void UniversalPrint(const T &value, ::std::ostream *os)

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