We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3663a76 commit 33a2b2cCopy full SHA for 33a2b2c
lib/Interpreter/Compatibility.h
@@ -96,11 +96,11 @@ createClangInterpreter(std::vector<const char*>& args) {
96
};
97
auto it = std::find_if(args.begin(), args.end(), has_arg);
98
std::vector<const char*> gpu_args = {it, args.end()};
99
- #ifdef __APPLE__
100
- bool CudaEnabled = false;
101
- #else
102
- bool CudaEnabled = !gpu_args.empty();
103
- #endif
+#ifdef __APPLE__
+ bool CudaEnabled = false;
+#else
+ bool CudaEnabled = !gpu_args.empty();
+#endif
104
105
clang::IncrementalCompilerBuilder CB;
106
CB.SetCompilerArgs({args.begin(), it});
0 commit comments