template struct cv::cudev::VecTraits<uint>

#include <vec_traits.hpp>

template <>
struct VecTraits<uint>
{
    // typedefs

    typedef uint elem_type;

    // enums

    enum
    {
        cn =1,
    };

    // methods

    static
    __host__ __device__ static __forceinline__ uint
    all(uint v);

    static
    __host__ __device__ static __forceinline__ uint
    make(const uint* v);

    static
    __host__ __device__ static __forceinline__ uint
    make(uint x);
};