Code quality: fixed implicit conversions from size_t to int_t

This commit is contained in:
Philippe Tillet
2015-08-13 14:30:11 -07:00
parent 9fda50863a
commit f7cb4ac960
11 changed files with 44 additions and 44 deletions

View File

@@ -111,11 +111,11 @@ base_impl<TType, PType>::base_impl(parameters_type const & parameters, binding_p
{ }
template<class TType, class PType>
int_t base_impl<TType, PType>::local_size_0() const
unsigned int base_impl<TType, PType>::local_size_0() const
{ return p_.local_size_0; }
template<class TType, class PType>
int_t base_impl<TType, PType>::local_size_1() const
unsigned int base_impl<TType, PType>::local_size_1() const
{ return p_.local_size_1; }
template<class TType, class PType>