Skip to content

Commit

Permalink
Fix not pretty printing numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
SCell555 committed Oct 20, 2022
1 parent 4479ae7 commit a3934d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ShaderCompile/strmanip.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ static inline void __PrettyPrintNumber( std::ostream& s, uint64_t k )
*pchPrint-- = '0' + char( k % 10 );
}
*++pchPrint ? 0 : *pchPrint = 0;
s << chCompileString;
s << pchPrint;
}

static inline _Smanip2<uint64_t> PrettyPrint( uint64_t i )
Expand Down

0 comments on commit a3934d1

Please sign in to comment.