Skip to content

Commit

Permalink
XLC/BlueGene compilation porting (Eyescale/Equalizer#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
eile committed Aug 14, 2012
1 parent eaef8a2 commit c5a1b29
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions co/compressor/compressorRLE.ipp
Expand Up @@ -65,7 +65,7 @@ public:
static const bool _initialized ## cls ## type = _register ## cls ## type();

template< typename T >
static inline void _write( const T token, const T numTokens, T*& out )
inline void _write( const T token, const T numTokens, T*& out )
{
if( token == _rleMarker )
{
Expand Down Expand Up @@ -100,7 +100,7 @@ static inline void _write( const T token, const T numTokens, T*& out )
#define WRITE_OUTPUT( name ) _write( name ## Last, name ## Same, name ## Out )

template< typename T >
static inline void _compressToken( const T in, T& last, T& numLast, T*& out )
inline void _compressToken( const T in, T& last, T& numLast, T*& out )
{
if( in == last && numLast != std::numeric_limits< T >::max( ))
++numLast;
Expand Down
2 changes: 1 addition & 1 deletion co/compressor/snappy/snappy.cc
Expand Up @@ -844,7 +844,7 @@ static bool InternalUncompress(Source* r,
}

template <typename Writer>
static bool InternalUncompressAllTags(SnappyDecompressor* decompressor,
bool InternalUncompressAllTags(SnappyDecompressor* decompressor,
Writer* writer,
uint32 uncompressed_len,
uint32 max_len) {
Expand Down

0 comments on commit c5a1b29

Please sign in to comment.