================
@@ -0,0 +1,20 @@
+#ifndef LLVM_CLANG_INCLUDE_STATICANALYZER_CHECKERS_LIFETIMEMODELING_H
+#define LLVM_CLANG_INCLUDE_STATICANALYZER_CHECKERS_LIFETIMEMODELING_H
+
+#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
+#include "clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h"
+#include "clang/StaticAnalyzer/Core/PathSensitive/SVals.h"
+#include <vector>
+
+namespace clang::ento::lifetime_modeling {
+
+/// Returns the set of lifetime sources bound to \p Source that are dangling
+/// stack regions.
+const std::vector<const MemRegion *>
----------------
benedekaibas wrote:This header got moved to `lib/StaticAnalyzer/Checkers` I forgot to remove it on this branch. Resolved here: [a761c5a](https://github.com/llvm/llvm-project/pull/207052/commits/a761c5ab469d8878cb93f7e9d064fc6256dca057) https://github.com/llvm/llvm-project/pull/207052 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
