Date: 09/08/07 (Code WTF) Keywords: no keywords
class boolshit{
public:
boolshit(bool shit):_shit(shit){}
operator bool() const{return _shit;}
private:
bool _shit;
};
Настоящий production code. Клянусь, каждый идентификатор - чистая правда. Source: http://community.livejournal.com/code_wtf/100339.html
|