Skip to content

Commit

Permalink
added whitespace
Browse files Browse the repository at this point in the history
Signed-off-by: Avisheet <[email protected]>
  • Loading branch information
Avisheet committed Mar 1, 2024
1 parent a81c769 commit c7b287d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Color.cc
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ float& Color::operator[](const unsigned int _index)
break;
}

std::cerr << "Trying to read index " << _index << " of Color"<<std::endl;
std::cerr << "Trying to read index " << _index << " of Color" << std::endl;
throw std::runtime_error("Index Error: Color index out of range");
}

Expand Down
2 changes: 1 addition & 1 deletion src/Color_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ TEST(Color, OperatorIndex){
EXPECT_THROW({
try
{
clr[4]=0.1f;
clr[4] = 0.1f;
}
catch( const std::runtime_error& e )
{
Expand Down

0 comments on commit c7b287d

Please sign in to comment.