Automatic code cleanup.
PiperOrigin-RevId: 513248354
diff --git a/lifetime_analysis/lifetime_analysis.h b/lifetime_analysis/lifetime_analysis.h
index 8f58126..67f4a7e 100644
--- a/lifetime_analysis/lifetime_analysis.h
+++ b/lifetime_analysis/lifetime_analysis.h
@@ -81,13 +81,6 @@
void transfer(const clang::CFGElement& elt, LifetimeLattice& state,
clang::dataflow::Environment& environment);
- // TODO(yitzhakm): remove once https://reviews.llvm.org/D143920 is committed
- // and integrated downstream.
- void transfer(const clang::CFGElement* elt, LifetimeLattice& lattice,
- clang::dataflow::Environment& env) {
- transfer(*elt, lattice, env);
- }
-
private:
const clang::FunctionDecl* func_;
ObjectRepository& object_repository_;
diff --git a/nullability_verification/pointer_nullability_analysis.h b/nullability_verification/pointer_nullability_analysis.h
index 13df032..c08eea2 100644
--- a/nullability_verification/pointer_nullability_analysis.h
+++ b/nullability_verification/pointer_nullability_analysis.h
@@ -36,13 +36,6 @@
void transfer(const CFGElement& Elt, PointerNullabilityLattice& Lattice,
dataflow::Environment& Env);
- // TODO(yitzhakm): remove once https://reviews.llvm.org/D143920 is committed
- // and integrated downstream.
- void transfer(const CFGElement* elt, PointerNullabilityLattice& lattice,
- dataflow::Environment& env) {
- transfer(*elt, lattice, env);
- }
-
bool merge(QualType Type, const dataflow::Value& Val1,
const dataflow::Environment& Env1, const dataflow::Value& Val2,
const dataflow::Environment& Env2, dataflow::Value& MergedVal,