Skip to content

Commit dfcdd73

Browse files
committed
Fix lint errors.
1 parent bac2768 commit dfcdd73

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

torch_xla/csrc/status.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ namespace torch_xla {
6969
// Previous error message. (at <cpp-source-file>:<line>)
7070
// ...
7171
//
72-
#define XLA_RETURN_IF_ERROR(rexpr, ...) \
73-
do { \
72+
#define XLA_RETURN_IF_ERROR(rexpr, ...) \
73+
do { \
7474
XLA_RETURN_IF_ERROR_IMPL_(rexpr, XLA_STATUS_VAR_, {}, ##__VA_ARGS__) \
7575
} while (false)
7676

@@ -99,7 +99,7 @@ namespace torch_xla {
9999
// Previous error message. (at <cpp-source-file>:<line>)
100100
// ...
101101
//
102-
#define XLA_ASSIGN_OR_RETURN(lhs, rexpr, ...) \
102+
#define XLA_ASSIGN_OR_RETURN(lhs, rexpr, ...) \
103103
XLA_RETURN_IF_ERROR_IMPL_(rexpr, XLA_STATUS_VAR_, \
104104
lhs = std::move(XLA_STATUS_VAR_).value(), \
105105
##__VA_ARGS__)

0 commit comments

Comments
 (0)