aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/repository.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/repository.cpp b/src/repository.cpp
index 9008cd8..f6b43e1 100644
--- a/src/repository.cpp
+++ b/src/repository.cpp
@@ -289,7 +289,8 @@ static QString marksFileName(QString name)
}
FastImportRepository::FastImportRepository(const Rules::Repository &rule)
- : name(rule.name), fastImport(name), commitCount(0), outstandingTransactions(0), last_commit_mark(0), next_file_mark(maxMark), processHasStarted(false)
+ : name(rule.name), fastImport(name), commitCount(0), outstandingTransactions(0),
+ last_commit_mark(0), next_file_mark(maxMark), processHasStarted(false)
{
foreach (Rules::Repository::Branch branchRule, rule.branches) {
Branch branch;