From 63f327933e1b925f72e35e112cad3c08e45c12c9 Mon Sep 17 00:00:00 2001 From: Zach Hilman Date: Sat, 23 Jun 2018 16:19:11 -0400 Subject: [PATCH] Remove double const --- src/common/file_util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/file_util.h b/src/common/file_util.h index 515c226fa0..caed8163a6 100644 --- a/src/common/file_util.h +++ b/src/common/file_util.h @@ -213,7 +213,7 @@ public: return WriteArray(str.c_str(), str.length()); } - bool IsOpen() const const { + bool IsOpen() const { return nullptr != m_file; }