doc: Add missing template clauses in qvulkaninstance.cpp

Added a few missing template clauses to member functions
of QVulkanInstance<T>.

Change-Id: Ie13f7e97f6a2183ee66d7ea275bc56a2bc3588e8
Reviewed-by: Topi Reiniö <topi.reinio@qt.io>
This commit is contained in:
Martin Smith 2018-01-10 14:34:26 +01:00
parent 3e0d24ded3
commit d893ccf6cd

View File

@ -504,13 +504,13 @@ QVulkanInstance::~QVulkanInstance()
*/
/*!
\fn bool QVulkanInfoVector::contains(const QByteArray &name) const
\fn template<typename T> bool QVulkanInfoVector<T>::contains(const QByteArray &name) const
\return true if the vector contains a layer or extension with the given \a name.
*/
/*!
\fn bool QVulkanInfoVector::contains(const QByteArray &name, int minVersion) const
\fn template<typename T> bool QVulkanInfoVector<T>::contains(const QByteArray &name, int minVersion) const
\return true if the vector contains a layer or extension with the given
\a name and a version same as or newer than \a minVersion.