Cosa icon indicating copy to clipboard operation
Cosa copied to clipboard

Cleanup: Improve IOStream operators

Open mikaelpatel opened this issue 8 years ago • 0 comments

Use template function to reduce code size.

template <class T> inline IOStream& operator<<(IOStream &ios, const T &val) 
{
  ios.print(val);
  return (ios);
}

mikaelpatel avatar Aug 23 '16 08:08 mikaelpatel