Skip to content

Commit

Permalink
Repaired broken functionality in concat module.
Browse files Browse the repository at this point in the history
Fixes #16
  • Loading branch information
Chris--A committed Jul 23, 2016
1 parent b1bfce1 commit 346377a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib/PrintConcat.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,19 +36,19 @@

template< typename T >
_INLINE_ derived &concat( const T &t )
{ return CRTPO.print( t ), CRTPP; }
{ return CRTPO.print( t ), CRTPO; }

template< typename T >
_INLINE_ derived &concat( const T &t, const int i )
{ return CRTPO.print( t, i ) CRTPP; }
{ return CRTPO.print( t, i ) CRTPO; }

template< typename T >
_INLINE_ derived &concatln( const T &t )
{ return CRTPO.println( t ), CRTPP; }
{ return CRTPO.println( t ), CRTPO; }

template< typename T >
_INLINE_ derived &concatln( const T &t, const int i )
{ return CRTPO.println( t, i ), CRTPP; }
{ return CRTPO.println( t, i ), CRTPO; }
};

#endif

0 comments on commit 346377a

Please sign in to comment.