From: Gerd v. Egidy Date: Wed, 25 Aug 2004 09:15:58 +0000 (+0000) Subject: libi2ncommon: (gerd) mark inline function as such X-Git-Tag: v2.6~254 X-Git-Url: http://developer.intra2net.com/git/?a=commitdiff_plain;h=e6da286a85f39d180b75018333780c167e29097a;p=libi2ncommon libi2ncommon: (gerd) mark inline function as such --- diff --git a/src/stringfunc.hxx b/src/stringfunc.hxx index bacaff1..31b6cfb 100644 --- a/src/stringfunc.hxx +++ b/src/stringfunc.hxx @@ -27,7 +27,7 @@ std::string iso_to_html(const std::string& isostring); std::string escape(const std::string &s); std::string descape(const std::string &s, int startpos, int &endpos); -std::string descape(const std::string &s) +inline std::string descape(const std::string &s) { int endpos; return descape(s,0,endpos);