diff options
author | Mike Stump <mrs@apple.com> | 2009-09-09 15:08:12 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-09-09 15:08:12 +0000 |
commit | 11289f42807681deee5551c40fe1a4282d54c86a (patch) | |
tree | 97ed01bf613ec21a6dc3d53097c925fc6353c9f9 /clang/lib/Index/ProgramImpl.h | |
parent | 16ad903fcf596916257acef39618545de331db8f (diff) | |
download | bcm5719-llvm-11289f42807681deee5551c40fe1a4282d54c86a.tar.gz bcm5719-llvm-11289f42807681deee5551c40fe1a4282d54c86a.zip |
Remove tabs, and whitespace cleanups.
llvm-svn: 81346
Diffstat (limited to 'clang/lib/Index/ProgramImpl.h')
-rw-r--r-- | clang/lib/Index/ProgramImpl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/Index/ProgramImpl.h b/clang/lib/Index/ProgramImpl.h index 1fbff9b3256..57b9ce3115e 100644 --- a/clang/lib/Index/ProgramImpl.h +++ b/clang/lib/Index/ProgramImpl.h @@ -30,16 +30,16 @@ public: private: EntitySetTy Entities; llvm::BumpPtrAllocator BumpAlloc; - + IdentifierTable Identifiers; SelectorTable Selectors; ProgramImpl(const ProgramImpl&); // do not implement ProgramImpl &operator=(const ProgramImpl &); // do not implement - + public: ProgramImpl() : Identifiers(LangOptions()) { } - + EntitySetTy &getEntities() { return Entities; } IdentifierTable &getIdents() { return Identifiers; } SelectorTable &getSelectors() { return Selectors; } |