update
This commit is contained in:
commit
53f57381cc
@ -1,5 +1,3 @@
|
|||||||
#include <cstddef>
|
|
||||||
#include <cstdlib>
|
|
||||||
#include <tools.hpp>
|
#include <tools.hpp>
|
||||||
#include <string_view>
|
#include <string_view>
|
||||||
|
|
||||||
|
@ -42,7 +42,7 @@ namespace zt {
|
|||||||
};
|
};
|
||||||
|
|
||||||
template<typename ...Args>
|
template<typename ...Args>
|
||||||
inline void print(std::ostream &os,const Args&...args){
|
inline void raw_print(std::ostream &os,const Args&...args){
|
||||||
std::stringstream ss;
|
std::stringstream ss;
|
||||||
((ss<<args),...);
|
((ss<<args),...);
|
||||||
os<<ss.str();
|
os<<ss.str();
|
||||||
@ -51,13 +51,13 @@ namespace zt {
|
|||||||
|
|
||||||
template<typename ...Args>
|
template<typename ...Args>
|
||||||
inline void print(const Args&...args){
|
inline void print(const Args&...args){
|
||||||
print(std::cin,args...);
|
raw_print(std::cin,args...);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename ...Args>
|
template<typename ...Args>
|
||||||
inline void eprint(const Args&...args){
|
inline void eprint(const Args&...args){
|
||||||
print(std::cerr,args...);
|
raw_print(std::cerr,args...);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user