summaryrefslogtreecommitdiff
path: root/algorithm.cpp
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:13:13 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:13:13 +0200
commit7f23ee90fd545995a29e2175f15e8b97e59ca67a (patch)
treef8d0afac51995032e58b9a475ccbbc73ba207baf /algorithm.cpp
parent3.19 (diff)
downloadFreeFileSync-7f23ee90fd545995a29e2175f15e8b97e59ca67a.tar.gz
FreeFileSync-7f23ee90fd545995a29e2175f15e8b97e59ca67a.tar.bz2
FreeFileSync-7f23ee90fd545995a29e2175f15e8b97e59ca67a.zip
3.20
Diffstat (limited to 'algorithm.cpp')
-rw-r--r--algorithm.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/algorithm.cpp b/algorithm.cpp
index cfc2997a..a059e693 100644
--- a/algorithm.cpp
+++ b/algorithm.cpp
@@ -3,7 +3,7 @@
// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
// * Copyright (C) 2008-2011 ZenJu (zhnmju123 AT gmx.de) *
// **************************************************************************
-//
+
#include "algorithm.h"
#include <iterator>
#include <stdexcept>
@@ -1265,8 +1265,8 @@ private:
void zen::addHardFiltering(BaseDirMapping& baseMap, const Zstring& excludeFilter)
{
- ApplyHardFilter<STRATEGY_AND>(*HardFilter::FilterRef(
- new NameFilter(FilterConfig().includeFilter, excludeFilter))).execute(baseMap);
+ ApplyHardFilter<STRATEGY_AND>(*HardFilter::FilterRef(
+ new NameFilter(FilterConfig().includeFilter, excludeFilter))).execute(baseMap);
}
bgstack15