From 6f240aae72df8319ba9417ec2c6fb920c68eb52f Mon Sep 17 00:00:00 2001 From: Karl Chen Date: Sat, 29 Nov 2003 12:35:21 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=2720 --- lib/parse.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/parse.h b/lib/parse.h index adc2d98148..c81b758211 100644 --- a/lib/parse.h +++ b/lib/parse.h @@ -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()); }