BlenderDNA: Silence warning about inline function which is declared but not defined

It's a templated method which is meant to be specialized. The base version
is never called. Just remove 'inline' to make GCC shut up.
pull/1444/head
Turo Lamminen 2017-09-18 15:21:51 +03:00
parent 40c308af44
commit 982430c3ce
1 changed files with 1 additions and 1 deletions

View File

@ -253,7 +253,7 @@ public:
* a compiler complain is the result. * a compiler complain is the result.
* @param dest Destination value to be written * @param dest Destination value to be written
* @param db File database, including input stream. */ * @param db File database, including input stream. */
template <typename T> inline void Convert (T& dest, const FileDatabase& db) const; template <typename T> void Convert (T& dest, const FileDatabase& db) const;
// -------------------------------------------------------- // --------------------------------------------------------
// generic converter // generic converter