Internal changes.

PiperOrigin-RevId: 582324372
pull/14738/head
Protobuf Team Bot 1 year ago committed by Copybara-Service
parent 7c68721b23
commit 8fe757e961
  1. 1
      src/google/protobuf/compiler/allowlists/BUILD.bazel
  2. 28
      src/google/protobuf/compiler/allowlists/unused_imports.cc

@ -24,7 +24,6 @@ cc_library(
"editions.cc",
"empty_package.cc",
"open_enum.cc",
"unused_imports.cc",
],
hdrs = ["allowlists.h"],
copts = COPTS,

@ -1,28 +0,0 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
#include "absl/strings/string_view.h"
#include "google/protobuf/compiler/allowlists/allowlist.h"
#include "google/protobuf/compiler/allowlists/allowlists.h"
namespace google {
namespace protobuf {
namespace compiler {
// NOTE: Allowlists in this file are not accepting new entries unless otherwise
// specified.
// TODO: Remove when empty.
static constexpr auto kUnusedImports = internal::MakeAllowlist({
// Intentionally left blank.
});
bool IsUnusedImportFile(absl::string_view file) {
return kUnusedImports.Allows(file);
}
} // namespace compiler
} // namespace protobuf
} // namespace google
Loading…
Cancel
Save