summaryrefslogtreecommitdiff
path: root/lib/backupstore
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2015-08-29 08:46:22 +0000
committerChris Wilson <chris+github@qwirx.com>2015-08-29 08:46:22 +0000
commitace361b403a3308d3c94f05c3b099e3feabeb0fd (patch)
tree3806ed819190f9679bd63d731b36c091174b2c0c /lib/backupstore
parent161181f9e6f8bad2df42aa7a73ac620452663248 (diff)
Whitespace, import order and comment fixes
Diffstat (limited to 'lib/backupstore')
-rw-r--r--lib/backupstore/BackupStoreFile.cpp31
1 files changed, 16 insertions, 15 deletions
diff --git a/lib/backupstore/BackupStoreFile.cpp b/lib/backupstore/BackupStoreFile.cpp
index d68ccfe1..99562685 100644
--- a/lib/backupstore/BackupStoreFile.cpp
+++ b/lib/backupstore/BackupStoreFile.cpp
@@ -22,29 +22,30 @@
#include <stdio.h>
#endif
+#include "BackupClientFileAttributes.h"
+#include "BackupStoreConstants.h"
+#include "BackupStoreException.h"
#include "BackupStoreFile.h"
-#include "BackupStoreFileWire.h"
#include "BackupStoreFileCryptVar.h"
+#include "BackupStoreFileEncodeStream.h"
+#include "BackupStoreFileWire.h"
#include "BackupStoreFilename.h"
-#include "BackupStoreException.h"
-#include "IOStream.h"
-#include "Guards.h"
-#include "FileModificationTime.h"
-#include "FileStream.h"
-#include "BackupClientFileAttributes.h"
+#include "BackupStoreInfo.h"
#include "BackupStoreObjectMagic.h"
-#include "Compress.h"
-#include "CipherContext.h"
-#include "CipherBlowfish.h"
#include "CipherAES.h"
-#include "BackupStoreConstants.h"
+#include "CipherBlowfish.h"
+#include "CipherContext.h"
#include "CollectInBufferStream.h"
-#include "RollingChecksum.h"
+#include "Compress.h"
+#include "FileModificationTime.h"
+#include "FileStream.h"
+#include "Guards.h"
+#include "IOStream.h"
+#include "Logging.h"
#include "MD5Digest.h"
-#include "ReadGatherStream.h"
#include "Random.h"
-#include "BackupStoreFileEncodeStream.h"
-#include "Logging.h"
+#include "ReadGatherStream.h"
+#include "RollingChecksum.h"
#include "MemLeakFindOn.h"