MCPcopy Create free account
hub / github.com/OpenPTrack/open_ptrack_v2 / StreamHelper

Function StreamHelper

rtpose_wrapper/src/gtest/gtest.h:8695–8701  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8693 // tr1::type_traits-like is_pointer works, and we can overload on that.
8694 template <typename T>
8695 inline void StreamHelper(internal::true_type /*dummy*/, T* pointer) {
8696 if (pointer == NULL) {
8697 *ss_ << "(null)";
8698 } else {
8699 ::GTestStreamToHelper(ss_.get(), pointer);
8700 }
8701 }
8702 template <typename T>
8703 inline void StreamHelper(internal::false_type /*dummy*/, const T& value) {
8704 ::GTestStreamToHelper(ss_.get(), value);

Callers

nothing calls this directly

Calls 2

GTestStreamToHelperFunction · 0.85
getMethod · 0.45

Tested by

no test coverage detected