From 8ab003a0db5fa5fc990717aed545ab766d3bb558 Mon Sep 17 00:00:00 2001 From: David Majnemer Date: Mon, 2 Feb 2015 19:30:52 +0000 Subject: The prefix 'Ms-' should be 'MS-' Clang is otherwise consistent that Microsoft be abbreviated as MS, not Ms. llvm-svn: 227842 --- clang/lib/AST/Decl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'clang/lib/AST/Decl.cpp') diff --git a/clang/lib/AST/Decl.cpp b/clang/lib/AST/Decl.cpp index e43c28af9b6..9988c71d978 100644 --- a/clang/lib/AST/Decl.cpp +++ b/clang/lib/AST/Decl.cpp @@ -3589,7 +3589,7 @@ void RecordDecl::completeDefinition() { /// This which can be turned on with an attribute, pragma, or the /// -mms-bitfields command-line option. bool RecordDecl::isMsStruct(const ASTContext &C) const { - return hasAttr() || C.getLangOpts().MSBitfields == 1; + return hasAttr() || C.getLangOpts().MSBitfields == 1; } static bool isFieldOrIndirectField(Decl::Kind K) { -- cgit v1.2.3