show/hide this revision's text 3 Reference to other answer.

Remember that here you use << operator not only on int but also on ostream. You could derive from ostream and implement it in your own derived class, but I would suggest to make a simple macro like

#define EL(i) (i)<<std::endl

Alternatively you could make boxed int class and override the << for standard ostream and boxed int (like in answer by Iraimbilanja) class. Sounds like huge overkill but could work.

show/hide this revision's text 2 added 163 characters in body

Remember that here you use << operator not only on int but also on ostream. You could derive from ostream and implement it in your own derived class, but I would suggest to make a simple macro like

#define EL(i) (i)<<std::endl

Alternatively you could make boxed int class and override the << for standard ostream and boxed int class. Sounds like huge overkill but could work.

show/hide this revision's text 1

Remember that here you use << operator not only on int but also on ostream. You could derive from ostream and implement it in your own derived class, but I would suggest to make a simple macro like

#define EL(i) (i)<<std::endl