File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
lldb/source/Plugins/TypeSystem/Swift
llvm/include/llvm/Support Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -402,9 +402,9 @@ template <> struct less<swift::ClusteredBitVector> {
402
402
for (; iL >= 0 && iR >= 0 ; --iL, --iR) {
403
403
bool bL = lhs[iL];
404
404
bool bR = rhs[iR];
405
- if (bL and not bR)
405
+ if (bL && ! bR)
406
406
return false ;
407
- if (bR and not bL)
407
+ if (bR && ! bL)
408
408
return true ;
409
409
}
410
410
return false ;
Original file line number Diff line number Diff line change 19
19
#include " llvm/ADT/SmallVector.h"
20
20
#include " llvm/Config/llvm-config.h" // for LLVM_ON_UNIX
21
21
#include " llvm/Support/Compiler.h"
22
+ // SWIFT_ENABLE_TENSORFLOW
23
+ #if 0
22
24
#include <ciso646> // So we can check the C++ standard lib macros.
25
+ #endif
26
+ // SWIFT_ENABLE_TENSORFLOW END
23
27
#include < functional>
24
28
25
29
#if defined(_MSC_VER)
You can’t perform that action at this time.
0 commit comments