Skip to content

Commit cfc3d78

Browse files
authored
chore: fully qualify name to aid import (#15561)
1 parent ef53c13 commit cfc3d78

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

google/cloud/spanner/internal/connection_impl.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,8 @@ spanner::BatchedCommitResult FromProto(
357357
}
358358

359359
template <typename T>
360-
absl::optional<T> GetRandomElement(protobuf::RepeatedPtrField<T> const& m) {
360+
absl::optional<T> GetRandomElement(
361+
google::protobuf::RepeatedPtrField<T> const& m) {
361362
if (m.empty()) return absl::nullopt;
362363
std::uniform_int_distribution<decltype(m.size())> d(0, m.size() - 1);
363364
auto rng = internal::MakeDefaultPRNG();

0 commit comments

Comments
 (0)