[AutoAccept][Codemod][FBSourceClangFormatLinter] Daily `arc lint --take CLANGFORMAT`
Reviewed By: zertosh
Differential Revision: D34814800
fbshipit-source-id: 49cdae9ff3b7b3489181f130fefb25c400abbfe8
(cherry picked from commit 205c1098405afc6841a3bbe45a6a8ba20b601e72)
diff --git a/c10/test/util/Synchronized_test.cpp b/c10/test/util/Synchronized_test.cpp
index c69c516..faabe23 100644
--- a/c10/test/util/Synchronized_test.cpp
+++ b/c10/test/util/Synchronized_test.cpp
@@ -27,11 +27,11 @@
};
std::array<std::thread, 10> threads;
- for (auto& t: threads) {
+ for (auto& t : threads) {
t = std::thread(thread_cb);
}
- for (auto& t: threads) {
+ for (auto& t : threads) {
t.join();
}
diff --git a/ios/TestApp/TestApp/ViewController.mm b/ios/TestApp/TestApp/ViewController.mm
index 21b183b..d8ecacd 100644
--- a/ios/TestApp/TestApp/ViewController.mm
+++ b/ios/TestApp/TestApp/ViewController.mm
@@ -6,7 +6,7 @@
@implementation ViewController
- (void)viewDidLoad {
- [super viewDidLoad];
+ [super viewDidLoad];
}
@end