Skip to content

Commit

Permalink
Appease MSVC.
Browse files Browse the repository at this point in the history
  • Loading branch information
1uc committed May 11, 2023
1 parent 4dc2b67 commit eec86f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/readers/morphologyHDF5.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ void DataSetReader<Derived>::read(const std::string& groupName,
std::vector<size_t> expectedDimensions,
T& data) const {
auto derived = static_cast<const Derived&>(*this);
derived.template read_impl(groupName, datasetName, expectedDimensions, data);
derived.template read_impl<T>(groupName, datasetName, expectedDimensions, data);
}

template <typename T>
Expand Down

0 comments on commit eec86f6

Please sign in to comment.