Skip to content

Commit

Permalink
Changes follwoing review
Browse files Browse the repository at this point in the history
  • Loading branch information
whaeck committed May 17, 2024
1 parent 0526a03 commit 6d8581a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/NDItk/base/IntegerListRecord/src/write.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ void write( OutputIterator& iter ) const {
std::ostringstream buffer;

auto full = this->data().size() / 5;
auto partial = this->data().size() - full * 5;
auto partial = this->data().size() % 5;
auto x = this->data().begin();

while ( full-- ) {
Expand Down
2 changes: 1 addition & 1 deletion src/NDItk/base/RealListRecord/src/write.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ void write( OutputIterator& iter ) const {
std::ostringstream buffer;

auto full = this->data().size() / 5;
auto partial = this->data().size() - full * 5;
auto partial = this->data().size() % 5;
auto x = this->data().begin();

while ( full-- ) {
Expand Down
2 changes: 1 addition & 1 deletion src/NDItk/base/StringListRecord/src/write.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ void write( OutputIterator& iter ) const {
std::ostringstream buffer;

auto full = this->data().size() / 5;
auto partial = this->data().size() - full * 5;
auto partial = this->data().size() % 5;
auto x = this->data().begin();

while ( full-- ) {
Expand Down
2 changes: 1 addition & 1 deletion src/NDItk/multigroup/CrossSection/src/write.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ void write( OutputIterator& iter ) const {
x += 2;

auto full = this->numberGroups() / 5;
auto partial = this->numberGroups() - full * 5;
auto partial = this->numberGroups() % 5;

while ( full-- ) {

Expand Down

0 comments on commit 6d8581a

Please sign in to comment.