diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2016-05-15 17:11:27 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2016-05-31 18:42:55 +0300 |
commit | 61ef82ec2b2ca396667f92a4e5c6ceb729c42086 (patch) | |
tree | 57ca5868483f361a9da28bbfc32f0cc838787b3e /butl/base64.cxx | |
parent | 79bb0331cb93a736193e733b5ae26d040931a1aa (diff) |
Port to MinGW
Diffstat (limited to 'butl/base64.cxx')
-rw-r--r-- | butl/base64.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/butl/base64.cxx b/butl/base64.cxx index 2939b46..c2da936 100644 --- a/butl/base64.cxx +++ b/butl/base64.cxx @@ -159,8 +159,8 @@ namespace butl is.setstate (istream::eofbit); } - std::string - base64_encode (const std::vector<char>& v) + string + base64_encode (const vector<char>& v) { string r; back_insert_iterator<string> o (r); |