summaryrefslogtreecommitdiff
path: root/base64.h
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2003-07-18 04:35:30 +0000
committerweidai <weidai11@users.noreply.github.com>2003-07-18 04:35:30 +0000
commit5b2008101cb8123db25bbe99a2e3688fc426edbc (patch)
treea25c153b42dc3f510a7981a031bd04dfa0a7a712 /base64.h
parentb3d4024665640987ee62a348cfc3e9cfe7e1536e (diff)
downloadcryptopp-git-5b2008101cb8123db25bbe99a2e3688fc426edbc.tar.gz
misc changes
Diffstat (limited to 'base64.h')
-rw-r--r--base64.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/base64.h b/base64.h
index 33072a0d..b9ba801e 100644
--- a/base64.h
+++ b/base64.h
@@ -12,7 +12,7 @@ public:
Base64Encoder(BufferedTransformation *attachment = NULL, bool insertLineBreaks = true, int maxLineLength = 72)
: SimpleProxyFilter(new BaseN_Encoder(new Grouper), attachment)
{
- IsolatedInitialize(MakeParameters("InsertLineBreaks", insertLineBreaks)("MaxLineLength", maxLineLength));
+ IsolatedInitialize(MakeParameters(Name::InsertLineBreaks(), insertLineBreaks)(Name::MaxLineLength(), maxLineLength));
}
void IsolatedInitialize(const NameValuePairs &parameters);