ATLAS Offline Software
Loading...
Searching...
No Matches
dbg Namespace Reference

Functions

template<class... Args>
void print (std::FILE *stream, std::format_string< Args... > fmt, Args &&... args)
template<class T>
void * ptr (T *p)

Function Documentation

◆ print()

template<class... Args>
void dbg::print ( std::FILE * stream,
std::format_string< Args... > fmt,
Args &&... args )

Definition at line 70 of file SGImplSvc.cxx.

70 {
71 std::fputs(std::format(fmt, std::forward<Args>(args)...), stream);
72}
const char *const fmt

◆ ptr()

template<class T>
void * dbg::ptr ( T * p)

Definition at line 74 of file SGImplSvc.cxx.

74{ return static_cast<void*>(p); }