From 3f7160183dd0dc08f1ab4ab477a7dde20bb04792 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Fri, 17 Mar 2017 17:42:28 +0200 Subject: [PATCH] Fixed compilation with GCC/Clang MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit src/p_blockmap.h:76:7: error: extra qualification ‘FBlockmap::’ on member ‘VerifyBlockMap’ --- src/p_blockmap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_blockmap.h b/src/p_blockmap.h index 992f2d223a..0839fc6c14 100644 --- a/src/p_blockmap.h +++ b/src/p_blockmap.h @@ -73,7 +73,7 @@ struct FBlockmap return blockmaplump + *(blockmap + offset) + 1; } - bool FBlockmap::VerifyBlockMap(int count); + bool VerifyBlockMap(int count); void Clear() {