From: dooglus Date: Fri, 25 Jan 2008 14:00:05 +0000 (+0000) Subject: g++ 4.3 told me "time.h:65: warning: type qualifiers ignored on function return type... X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=032fe601f1d1ef6aa58bd8ac8ca6affad8808b63;p=synfig.git g++ 4.3 told me "time.h:65: warning: type qualifiers ignored on function return type" so I removed the "const" from the return type of Time::epsilon_(). git-svn-id: http://svn.voria.com/code@1470 1f10aa63-cdf2-0310-b900-c93c546f37ac --- diff --git a/synfig-core/trunk/src/synfig/time.h b/synfig-core/trunk/src/synfig/time.h index a11050e..3a663e9 100644 --- a/synfig-core/trunk/src/synfig/time.h +++ b/synfig-core/trunk/src/synfig/time.h @@ -62,7 +62,7 @@ public: private: value_type value_; - static const value_type epsilon_() { return static_cast(0.0005); } + static value_type epsilon_() { return static_cast(0.0005); } public: Time() { }