- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
#include <iostream>
enum Quiet { LOG };
template<typename T>
Quiet operator <<(Quiet o, T) {
return o;
}
static inline Quiet operator <<(Quiet o, std::ostream &(*)(std::ostream &)) {
return o;
}
int main() {
LOG << "Hello world!" << std::endl;
return 0;
}
Lure Of Chaos 21.06.2013 08:24 # 0
inkanus-gray 21.06.2013 09:28 # 0
Lure Of Chaos 21.06.2013 09:30 # +3
defecate-plusplus 21.06.2013 09:21 # +5
тогда даже исполняться будет быстрее, т.к. компилятор тупо выбросит невыполняющуюся ветвь где foo - да хоть std::cout
bormand 21.06.2013 10:14 # 0