예제 #1
0
파일: spacer.hpp 프로젝트: ST3ALth/libed2k
 // note: pass original_formatter here - so that original_formatter::operator() gets called, not the spacer_t's operator()
 template<class original_formatter, class convert, class msg_type, class string_type> inline void spacer_write(msg_type & msg, const original_formatter & fmt, const string_type & prefix, const string_type & suffix) {
     spacer_write_with_convert(msg, fmt, prefix, suffix, (const convert*)0);
 }
예제 #2
0
파일: spacer.hpp 프로젝트: K-ballo/hpx
     inline void spacer_write(optimize::cache_string_one_str & msg,
     const original_formatter & fmt, const std::string & prefix,
     const std::string & suffix) {
     spacer_write_with_convert(msg, fmt, prefix, suffix, 0);
 }