Skip to content

Commit

Permalink
delete double semi-colon
Browse files Browse the repository at this point in the history
make compatible with `-Wextra-semi-stmt`
  • Loading branch information
chrisbarber authored Mar 26, 2019
1 parent ddb0fbb commit 45315d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/sdsl/int_vector_buffer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ class int_vector_buffer
//! Returns whether underlying streams are currently associated to a file
bool is_open()
{
return m_ifile.is_open() and m_ofile.is_open();;
return m_ifile.is_open() and m_ofile.is_open();
}

//! Delete all content and set size to 0
Expand Down

0 comments on commit 45315d0

Please sign in to comment.