From 10bc46a6c0c1c9fa3023ac1fcd0a5f7c4ef7b4b2 Mon Sep 17 00:00:00 2001 From: Sven Strickroth Date: Sun, 6 Feb 2011 14:41:02 +0100 Subject: [PATCH] fixed "warning C4390: ';' : empty controlled statement found; is this the intent?" compiler warning Signed-off-by: Sven Strickroth --- src/Git/GitFolderStatus.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Git/GitFolderStatus.cpp b/src/Git/GitFolderStatus.cpp index 942117078..154197a7c 100644 --- a/src/Git/GitFolderStatus.cpp +++ b/src/Git/GitFolderStatus.cpp @@ -142,8 +142,8 @@ const FileStatusCacheEntry * GitFolderStatus::BuildCache(const CTGitPath& filepa // set up the configuration // Note: I know this is an 'expensive' call, but without this, ignores // done in the global ignore pattern won't show up. - if (g_ShellCache.ShowIgnoredOverlay()) -;// svn_error_clear(svn_config_get_config (&(localctx->config), g_pConfigDir, pool)); +// if (g_ShellCache.ShowIgnoredOverlay()) +//;// svn_error_clear(svn_config_get_config (&(localctx->config), g_pConfigDir, pool)); // strings pools are unused, now -> we may clear them -- 2.11.4.GIT