Skip to content
Snippets Groups Projects
Commit 7a6d3b57 authored by Dominik Thoennes's avatar Dominik Thoennes
Browse files

Merge branch 'fhennig/fix-base64-writer' into 'master'

Fix VTK Base64Writer

Closes #263

See merge request walberla/walberla!728
parents d587c8b5 ee1b8184
No related merge requests found
......@@ -75,7 +75,7 @@ public:
void toStream( std::ostream& os );
private:
void encodeblock( const std::array< unsigned char, 3 > in, std::array< unsigned char, 4 > out, int len )
void encodeblock( const std::array< unsigned char, 3 > in, std::array< unsigned char, 4 > & out, int len )
{
std::array< unsigned char, 65 > cb64 { "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/" };
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment