Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
torwig committed Jun 17, 2023
1 parent 93048fa commit a3acc7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/status.h
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ struct StringInStatusOr<T, std::enable_if_t<sizeof(T) < sizeof(std::string)>> :
StringInStatusOr(StringInStatusOr<U>&& v) : BaseType(new std::string(*std::move(v))) {} // NOLINT
template <typename U, typename std::enable_if_t<!StringInStatusOr<U>::inplace, int> = 0>
StringInStatusOr(StringInStatusOr<U>&& v) // NOLINT
: BaseType((typename StringInStatusOr<U>::BaseType&&)(std::move(v))) {}
: BaseType((typename StringInStatusOr<U>::BaseType &&)(std::move(v))) {}

StringInStatusOr(const StringInStatusOr& v) = delete;

Expand Down

0 comments on commit a3acc7a

Please sign in to comment.