Skip to content

Commit 653ae11

Browse files
committed
formatting
1 parent 641fd47 commit 653ae11

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/core/expr/funary/uinvert.cc

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -61,30 +61,30 @@ class FExpr_UInvert : public FExpr_FuncUnary {
6161
));
6262
case SType::BOOL:
6363
col_out = Column(new FuncUnary1_ColumnImpl<int8_t, int8_t>(
64-
std::move(col), op_invert_bool, col.nrows(), SType::BOOL
65-
));
64+
std::move(col), op_invert_bool, col.nrows(), SType::BOOL
65+
));
6666
break;
6767
case SType::INT8:
6868
col_out = Column(new FuncUnary1_ColumnImpl<int8_t, int8_t>(
69-
std::move(col), op_invert<int8_t>, col.nrows(), SType::INT8
70-
));
69+
std::move(col), op_invert<int8_t>, col.nrows(), SType::INT8
70+
));
7171
break;
7272
case SType::INT16:
7373
col_out = Column(new FuncUnary1_ColumnImpl<int16_t, int16_t>(
74-
std::move(col), op_invert<int16_t>, col.nrows(), SType::INT16
75-
));
74+
std::move(col), op_invert<int16_t>, col.nrows(), SType::INT16
75+
));
7676
break;
7777
case SType::INT32:
7878
case SType::DATE32:
7979
col_out = Column(new FuncUnary1_ColumnImpl<int32_t, int32_t>(
80-
std::move(col), op_invert<int32_t>, col.nrows(), SType::INT32
81-
));
80+
std::move(col), op_invert<int32_t>, col.nrows(), SType::INT32
81+
));
8282
break;
8383
case SType::INT64:
8484
case SType::TIME64:
8585
col_out = Column(new FuncUnary1_ColumnImpl<int64_t, int64_t>(
86-
std::move(col), op_invert<int64_t>, col.nrows(), SType::INT64
87-
));
86+
std::move(col), op_invert<int64_t>, col.nrows(), SType::INT64
87+
));
8888
break;;
8989
default:
9090
throw TypeError() << "Cannot apply unary `operator ~` to a column with "

0 commit comments

Comments
 (0)