struct FunctionPointerPrinter
Defined at line 200 of file ../../third_party/googletest/src/googletest/include/gtest/gtest-printers.h
Used to print a pointer that is neither a char pointer nor a member
pointer, when the user doesn't define PrintTo() for it. (A member
variable pointer or member function pointer doesn't really point to
a location in the address space. Their representation is
implementation-defined. Therefore they will be printed as raw
bytes.)
Public Methods
template <typename T, typename = typename std::enable_if<
std::is_function<T>::value>::type>
void PrintValue (T * p, ::std::ostream * os)
Defined at line 203 of file ../../third_party/googletest/src/googletest/include/gtest/gtest-printers.h