forked from OSchip/llvm-project
[Basic] Replace vector<bool> with BitVector in SourceManager. NFC.
llvm-svn: 253181
This commit is contained in:
parent
c641bc9f2f
commit
678125d7ec
|
@ -39,6 +39,7 @@
|
|||
#include "clang/Basic/LLVM.h"
|
||||
#include "clang/Basic/SourceLocation.h"
|
||||
#include "llvm/ADT/ArrayRef.h"
|
||||
#include "llvm/ADT/BitVector.h"
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/ADT/DenseSet.h"
|
||||
#include "llvm/ADT/IntrusiveRefCntPtr.h"
|
||||
|
@ -620,7 +621,7 @@ class SourceManager : public RefCountedBase<SourceManager> {
|
|||
/// have already been loaded from the external source.
|
||||
///
|
||||
/// Same indexing as LoadedSLocEntryTable.
|
||||
std::vector<bool> SLocEntryLoaded;
|
||||
llvm::BitVector SLocEntryLoaded;
|
||||
|
||||
/// \brief An external source for source location entries.
|
||||
ExternalSLocEntrySource *ExternalSLocEntries;
|
||||
|
|
Loading…
Reference in New Issue