Skip to content

Commit b14bb7b

Browse files
committed
[gardening] Fix formatting around RValue constructor. NFC.
1 parent aca4cae commit b14bb7b

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

lib/SILGen/RValue.h

+4-5
Original file line numberDiff line numberDiff line change
@@ -75,15 +75,14 @@ class RValue {
7575
public:
7676
RValue() : elementsToBeAdded(Null) {}
7777

78-
RValue(RValue &&rv)
79-
: values(std::move(rv.values)),
80-
type(rv.type),
81-
elementsToBeAdded(rv.elementsToBeAdded)
82-
{
78+
RValue(RValue &&rv) : values(std::move(rv.values)),
79+
type(rv.type),
80+
elementsToBeAdded(rv.elementsToBeAdded) {
8381
assert((rv.isComplete() || rv.isInSpecialState())
8482
&& "moving rvalue that wasn't complete?!");
8583
rv.elementsToBeAdded = Used;
8684
}
85+
8786
RValue &operator=(RValue &&rv) {
8887
assert((isNull() || isUsed()) && "reassigning an valid rvalue?!");
8988

0 commit comments

Comments
 (0)