We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3994142 commit 1a152dcCopy full SHA for 1a152dc
google/cloud/spanner/uuid.cc
@@ -138,9 +138,9 @@ StatusOr<Uuid> MakeUuid(absl::string_view str) {
138
}
139
140
auto high_bits = ParseHexBlock(str, original_str);
141
- if (!high_bits.ok()) return std::move(high_bits.status());
+ if (!high_bits.ok()) return std::move(high_bits).status();
142
auto low_bits = ParseHexBlock(str, original_str);
143
- if (!low_bits.ok()) return std::move(low_bits.status());
+ if (!low_bits.ok()) return std::move(low_bits).status();
144
145
if (!str.empty()) {
146
return internal::InvalidArgumentError(
0 commit comments