Skip to content

Commit 4109eb6

Browse files
committed
remove comments
1 parent 46dbe77 commit 4109eb6

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/core/expr/funary/unary_minus.cc

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,7 @@ class FExpr_UnaryMinus : public FExpr_FuncUnary {
4141
static inline T op_minus(T x) {
4242
return -x;
4343
}
44-
/**
45-
* Unary operator `+` upcasts each numeric column to INT32, but
46-
* otherwise keeps unmodified. The operator cannot be applied to
47-
* string columns.
48-
*/
44+
4945
Column evaluate1(Column&& col) const override{
5046
SType stype = col.stype();
5147

0 commit comments

Comments
 (0)