fix msvs compiler error: C2899: typename cannot be used outside a template declaration

This commit is contained in:
Dane Springmeyer 2015-03-19 00:44:59 -07:00
parent 85b20f45d7
commit 4a831b4936

View file

@ -38,7 +38,7 @@ template <>
class image<null_t>
{
public:
using pixel_type = typename null_t::type;
using pixel_type = null_t::type;
static const image_dtype dtype = null_t::id;
private:
public: