Skip to content

Commit

Permalink
Replace std::endl with \n
Browse files Browse the repository at this point in the history
  • Loading branch information
mmore500 committed Apr 3, 2021
1 parent f7b9450 commit 93b68ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/dish2/record/drawings/DrawerManager.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ struct DrawerManager<FirstDrawer, SubsequentDrawers...> {
}
);

std::cout << "created drawer for " << emp::slugify(name) << std::endl;
std::cout << "created drawer for " << emp::slugify(name) << '\n';

emp_always_assert(
found != std::end( lookup ), emp::slugify(name)
Expand Down
2 changes: 1 addition & 1 deletion source/native.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ int main(int argc, char* argv[]) {

dish2::global_records_finalize();

std::cout << "process " << uitsl::get_proc_id() << " complete" << std::endl;
std::cout << "process " << uitsl::get_proc_id() << " complete" << '\n';

return 0;

Expand Down

0 comments on commit 93b68ff

Please sign in to comment.