From 45315d0e14ac165943d907c3dc3491f51c0d90f3 Mon Sep 17 00:00:00 2001 From: Chris Barber Date: Tue, 26 Mar 2019 09:30:00 +0100 Subject: [PATCH] delete double semi-colon make compatible with `-Wextra-semi-stmt` --- include/sdsl/int_vector_buffer.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/sdsl/int_vector_buffer.hpp b/include/sdsl/int_vector_buffer.hpp index 29a2f1081..601701506 100644 --- a/include/sdsl/int_vector_buffer.hpp +++ b/include/sdsl/int_vector_buffer.hpp @@ -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