summaryrefslogtreecommitdiffstats
path: root/clang/lib/Lex/ModuleMap.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-12-20 19:22:21 +0000
committerBill Wendling <isanbard@gmail.com>2012-12-20 19:22:21 +0000
commit4442605f184427092e64720db15ce89f65f49b78 (patch)
tree6aa145823579ffeeb858199e29dc705ad7fe49d6 /clang/lib/Lex/ModuleMap.cpp
parentf658e92724a349fa20a45535b40ed28b7575d49a (diff)
downloadbcm5719-llvm-4442605f184427092e64720db15ce89f65f49b78.tar.gz
bcm5719-llvm-4442605f184427092e64720db15ce89f65f49b78.zip
Revert r170500. It over-zealously converted *ALL* things named Attributes, which is wrong here.
llvm-svn: 170721
Diffstat (limited to 'clang/lib/Lex/ModuleMap.cpp')
-rw-r--r--clang/lib/Lex/ModuleMap.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/clang/lib/Lex/ModuleMap.cpp b/clang/lib/Lex/ModuleMap.cpp
index 3f8af8790a4..b815400754d 100644
--- a/clang/lib/Lex/ModuleMap.cpp
+++ b/clang/lib/Lex/ModuleMap.cpp
@@ -655,8 +655,8 @@ namespace clang {
};
/// \brief The set of attributes that can be attached to a module.
- struct Attribute {
- Attribute() : IsSystem() { }
+ struct Attributes {
+ Attributes() : IsSystem() { }
/// \brief Whether this is a system module.
unsigned IsSystem : 1;
@@ -709,7 +709,7 @@ namespace clang {
void parseUmbrellaDirDecl(SourceLocation UmbrellaLoc);
void parseExportDecl();
void parseInferredModuleDecl(bool Framework, bool Explicit);
- bool parseOptionalAttributes(Attribute &Attrs);
+ bool parseOptionalAttributes(Attributes &Attrs);
const DirectoryEntry *getOverriddenHeaderSearchDir();
@@ -1007,7 +1007,7 @@ void ModuleMapParser::parseModuleDecl() {
SourceLocation ModuleNameLoc = Id.back().second;
// Parse the optional attribute list.
- Attribute Attrs;
+ Attributes Attrs;
parseOptionalAttributes(Attrs);
// Parse the opening brace.
@@ -1475,7 +1475,7 @@ void ModuleMapParser::parseInferredModuleDecl(bool Framework, bool Explicit) {
}
// Parse optional attributes.
- Attribute Attrs;
+ Attributes Attrs;
parseOptionalAttributes(Attrs);
if (ActiveModule) {
@@ -1576,7 +1576,7 @@ void ModuleMapParser::parseInferredModuleDecl(bool Framework, bool Explicit) {
/// \param Attrs Will be filled in with the parsed attributes.
///
/// \returns true if an error occurred, false otherwise.
-bool ModuleMapParser::parseOptionalAttributes(Attribute &Attrs) {
+bool ModuleMapParser::parseOptionalAttributes(Attributes &Attrs) {
bool HadError = false;
while (Tok.is(MMToken::LSquare)) {
OpenPOWER on IntegriCloud