File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed
Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -230,7 +230,7 @@ namespace detail
230230 {
231231 return is_char_v<T>;
232232 }
233- template <size_t N>
233+ template <size_t N>
234234 static constexpr bool call ()
235235 {
236236 return false ;
Original file line number Diff line number Diff line change @@ -922,14 +922,14 @@ void RecordComponent::loadChunk_impl(
922922 * Attention: Do NOT use operator==(), doesnt work properly on Windows!
923923 */
924924 if (!isSame (dtype_requested, getDatatype ()) && !constant ())
925- {
926- std::string const data_type_str = datatypeToString (getDatatype ());
927- std::string const requ_type_str = datatypeToString (dtype_requested);
928- std::string err_msg =
929- " Type conversion during chunk loading not yet implemented! " ;
930- err_msg += " Data: " + data_type_str + " ; Load as: " + requ_type_str;
931- throw std::runtime_error (err_msg);
932- }
925+ {
926+ std::string const data_type_str = datatypeToString (getDatatype ());
927+ std::string const requ_type_str = datatypeToString (dtype_requested);
928+ std::string err_msg =
929+ " Type conversion during chunk loading not yet implemented! " ;
930+ err_msg += " Data: " + data_type_str + " ; Load as: " + requ_type_str;
931+ throw std::runtime_error (err_msg);
932+ }
933933
934934 auto dim = getDimensionality ();
935935 auto [offset, extent, memorySelection] = std::move (cfg);
You can’t perform that action at this time.
0 commit comments