Skip to content

Commit dd26bc8

Browse files
Update voxelImage.cpp
1 parent b6ef184 commit dd26bc8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/libvoxel/voxelImage.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,7 @@ class voxelplugins
619619
template<class InpT, typename T> //! run voxel plugins
620620
int vxlProcess(const InpT& ins, voxelImageT<T>& img, string nam) { return voxelplugins<T>().process(ins,img,nam); }
621621

622-
template<class InpT, typename First=uint8_t, typename... Rest>
622+
template<class InpT, typename First, typename... Rest>
623623
int vxlProcess(const InpT& ins, voxelImageTBase* imgPtr, string nam) { //! detect type and run voxel plugins
624624
if(auto img = dynamic_cast<voxelImageT<First>*>(imgPtr))
625625
return vxlProcess<InpT,First>(ins,*img,nam);

0 commit comments

Comments
 (0)