Skip to content

Commit

Permalink
Merge pull request MRtrix3#1035 from MRtrix3/fix_fixel_legacy_code
Browse files Browse the repository at this point in the history
fix compilation error on g++ 7.1 due to legacy code
  • Loading branch information
Lestropie authored Jul 5, 2017
2 parents 3f77032 + d74be94 commit a707161
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/fixel/legacy/image.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ namespace MR
friend std::ostream& operator<< (std::ostream& stream, const Value& value) {
stream << "Position [ ";
for (size_t n = 0; n < value.offsets.ndim(); ++n)
stream << value.offsets[n] << " ";
stream << value.offsets.index(n) << " ";
stream << "], offset = " << value.offsets.value() << ", " << value.size() << " elements";
return stream;
}
Expand Down

0 comments on commit a707161

Please sign in to comment.