Skip to content

Commit fb37a77

Browse files
committed
restoring spacing changes
1 parent 8dbac69 commit fb37a77

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

src/Cello/cello.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -1087,6 +1087,7 @@ namespace cello {
10871087
/// (however, the option exists to make the code more explicit)
10881088
bool is_initial_cycle(InitCycleKind kind) noexcept;
10891089
bool is_initial_cycle(int cycle, InitCycleKind kind) noexcept;
1090+
10901091
}
10911092

10921093
#endif /* CELLO_HPP */

src/Cello/control_compute.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ void Block::compute_continue_ ()
100100
// Apply the method to the Block
101101

102102
method->compute (this);
103-
103+
104104
performance_stop_(perf_compute,__FILE__,__LINE__);
105105

106106
} else {

src/Cello/mesh_Block.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1220,4 +1220,4 @@ bool Block::refine_during_initialization(Index index) const throw()
12201220
}
12211221

12221222
return false;
1223-
}
1223+
}

src/Cello/simulation_Simulation.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@ void Simulation::initialize_data_descr_() throw()
681681
for (int index_particle=0; index_particle<num_particles; index_particle++) {
682682
std::string particle = config_->particle_list[index_particle];
683683
int num_groups = config_->particle_group_list[index_particle].size();
684-
684+
685685
for (int index_group=0; index_group<num_groups; index_group++) {
686686
std::string group = config_->particle_group_list[index_particle][index_group];
687687
particle_descr_->groups()->add(particle,group);

0 commit comments

Comments
 (0)