@@ -48,6 +48,8 @@ namespace bigtable_internal {
4848GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_BEGIN
4949namespace {
5050
51+ using ::google::cloud::bigtable_internal::MergeOptions;
52+
5153inline std::string const & app_profile_id (Options const & options) {
5254 return options.get <bigtable::AppProfileIdOption>();
5355}
@@ -224,8 +226,7 @@ DataConnectionImpl::DataConnectionImpl(
224226 : background_(std::move(background)),
225227 stub_manager_(std::move(stub_manager)),
226228 limiter_(std::move(limiter)),
227- options_(internal::MergeOptions(std::move(options),
228- DataConnection::options())) {
229+ options_(MergeOptions(std::move(options), DataConnection::options())) {
229230#ifdef GOOGLE_CLOUD_CPP_BIGTABLE_WITH_OTEL_METRICS
230231 if (options_.get <bigtable::EnableMetricsOption>()) {
231232 // The client_uid is eventually used in conjunction with other data labels
@@ -264,8 +265,7 @@ DataConnectionImpl::DataConnectionImpl(
264265 stub_manager_(std::move(stub_manager)),
265266 operation_context_factory_(std::move(operation_context_factory)),
266267 limiter_(std::move(limiter)),
267- options_(internal::MergeOptions(std::move(options),
268- DataConnection::options())) {}
268+ options_(MergeOptions(std::move(options), DataConnection::options())) {}
269269
270270DataConnectionImpl::DataConnectionImpl (
271271 std::unique_ptr<BackgroundThreads> background,
0 commit comments