Skip to content

Commit

Permalink
Merge branch '1.4.1-prerelease' of https://github.com/MathCancer/Phys…
Browse files Browse the repository at this point in the history
…iCell into 1.4.1-prerelease
  • Loading branch information
Randy Heiland committed Sep 30, 2018
2 parents 4ba41ea + d07c784 commit 620798b
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions BioFVM/BioFVM_mesh.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -340,12 +340,8 @@ void General_Mesh::read_from_matlab( std::string filename )
bounding_box[4] = -9e99;
bounding_box[5] = -9e99;

<<<<<<< HEAD
size_t result;
for( int i=0; i < number_of_data_entries ; i++ )
=======
for( unsigned int i=0; i < number_of_data_entries ; i++ )
>>>>>>> 6fa1e820807c64eea133e97fd6a5c057b3bd3720
{
result = fread( (char*) &( voxels[i].center[0] ) , sizeof(double) , 1 , fp );
result = fread( (char*) &( voxels[i].center[1] ) , sizeof(double) , 1 , fp );
Expand Down Expand Up @@ -993,12 +989,8 @@ void Cartesian_Mesh::read_from_matlab( std::string filename )
bounding_box[4] = -9e99;
bounding_box[5] = -9e99;

<<<<<<< HEAD
size_t result;
for( int i=0; i < number_of_data_entries ; i++ )
=======
for( unsigned int i=0; i < number_of_data_entries ; i++ )
>>>>>>> 6fa1e820807c64eea133e97fd6a5c057b3bd3720
{
result = fread( (char*) &( voxels[i].center[0] ) , sizeof(double) , 1 , fp );
result = fread( (char*) &( voxels[i].center[1] ) , sizeof(double) , 1 , fp );
Expand Down

0 comments on commit 620798b

Please sign in to comment.