*** empty log message ***

svn path=/trunk/boinc/; revision=2720
This commit is contained in:
Karl Chen 2003-11-29 12:35:21 +00:00
parent 9873724b61
commit 6f240aae72
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ class InvalidBase64Exception
string base64_encode (const char* from, size_t length) throw(InvalidBase64Exception);
string base64_decode (const char* from, size_t length) throw(InvalidBase64Exception);
inlie string base64_decode (string const& from) throw(InvalidBase64Exception)
inline string base64_decode (string const& from) throw(InvalidBase64Exception)
{
return base64_decode(from.c_str(), from.length());
}