[Analyzer] Move UnexploredFirstStack into an anonymous namespace.

No functionality change intended.

llvm-svn: 325468
This commit is contained in:
Benjamin Kramer 2018-02-18 19:08:27 +00:00
parent f8c99297d3
commit 690ac0f3e0
1 changed files with 2 additions and 0 deletions

View File

@ -132,6 +132,7 @@ std::unique_ptr<WorkList> WorkList::makeBFSBlockDFSContents() {
return llvm::make_unique<BFSBlockDFSContents>();
}
namespace {
class UnexploredFirstStack : public WorkList {
/// Stack of nodes known to have statements we have not traversed yet.
@ -185,6 +186,7 @@ public:
}
}
};
} // end anonymous namespace
std::unique_ptr<WorkList> WorkList::makeUnexploredFirst() {
return llvm::make_unique<UnexploredFirstStack>();