- 8d3607b Allow CorrectTypo to add/modify nested name qualifiers to typos that by Kaelyn Uhrain · 13 years ago
- f8cc02e Introduce -Wunused-private-field. If enabled, this warning detects by Daniel Jasper · 13 years ago
- 36d02af Add a warning for when an array-to-pointer decay is performed on an array by Richard Smith · 13 years ago
- 2876983 Fixes some test cases that should have come along with r157943. by Aaron Ballman · 13 years ago
- 44f5b1d Removing the lambda extension warning concerning single return statements, as it no longer applies. by Aaron Ballman · 13 years ago
- b1c6f5f When adding built-in operator candidates for overload resolution by Douglas Gregor · 13 years ago
- 1973634 Implementation of a "soft opt-in" option for -Wimplicit-fallthrough diagnostics: -Wimplicit-fallthrough-per-method by Alexander Kornienko · 13 years ago
- 784ae8e Don't allow multiple correction candidates that have the same identifier by Kaelyn Uhrain · 13 years ago
- 1dfc4ba Anonymous union members within a struct are now properly handled as an unevaluated field in C++11 mode. This fixes PR12866. by Aaron Ballman · 13 years ago
- 90c7832 Change wording of 'memcpy' type mismatch warning and remove fixit. by Anna Zaks · 13 years ago
- abe21e3 Disable -Wunique-enum for anonymous enums. by David Blaikie · 13 years ago
- 7af7de7 Add new -Wunique-enum which will warn on enums which all elements have the by Richard Trieu · 13 years ago
- 6fcb372 Add fixits for memory access warnings. by Anna Zaks · 13 years ago
- e0cf31d PR12962: Fix a rare use after free when collecting virtual overrides. by Benjamin Kramer · 13 years ago
- 350e956 -Wdeprecated warning to include reference (as a note) by Fariborz Jahanian · 13 years ago
- a189d89 Don't offer '[[clang::fallthrough]];' fix-it when a fall-through occurs to a by Alexander Kornienko · 13 years ago
- 4059da8 A minor tweak to the new volatile lvalue warning: don't warn on "(void)x", where "x" refers to a local variable. This should silence a useless warning in compiler-rt and other places. by Eli Friedman · 13 years ago
- 8ab10aa DR1152 / PR12931 / PR6177: A candidate function which requires binding a const by Richard Smith · 13 years ago
- a611506 Add a warning to diagnose statements in C++ like "*(volatile int*)x;". Conceptually, this is part of -Wunused-value, but I added a separate flag -Wunused-volatile-lvalue so it doesn't get turned off by accident with -Wno-unused-value. I also made a few minor improvements to existing unused value warnings in the process. <rdar://problem/11516811>. by Eli Friedman · 13 years ago
- 11d1a69 Error when using typeid() with -fno-rtti. PR 12888. by Nico Weber · 13 years ago
- 25582fc Recover better from a missing 'typename' in a function template definition. by Richard Smith · 13 years ago
- def0762 Include the correct conversion context locations for condition expressions. by David Blaikie · 13 years ago
- 9fb1ac5 Don't warn when NULL is used within a macro but its conversion is outside a macro. by David Blaikie · 13 years ago
- 8f0a7e7 If we see a declaration which is either missing a type or has a malformed type, by Richard Smith · 13 years ago
- 827adaf Don't use the implicit int rule for error recovery in C++. Instead, try to by Richard Smith · 13 years ago
- be0ee87 Improve some of the conversion warnings to fire on conversion to bool. by David Blaikie · 13 years ago
- c608c3c Further improvement to wording of overload resolution diagnostics, and including by Richard Smith · 13 years ago
- dbbeccc PR12826: Converting an lvalue to an xvalue is a no-op conversion, not an lvalue-to-rvalue conversion. by Richard Smith · 13 years ago
- 3003e1d Fold the six functions checking explicitly-defaulted special member functions by Richard Smith · 13 years ago
- f7b8056 PR11857: When the wrong number of arguments are provided for a function by Richard Smith · 13 years ago
- f6278e5 Pull some cases of initialization with self-reference warnings out of by Richard Trieu · 13 years ago
- f63eee7 Stop AltiVec parsing from going down the 'implicit int' codepath as part of its by Richard Smith · 13 years ago
- 83a22ec Recover properly if a class member declaration starts with a scope specifier by Richard Smith · 13 years ago
- 7e9f8af Update the SelfReferenceChecker. Refactored some of the visitor methods. by Richard Trieu · 13 years ago
- 0a84e7a Updating the test case based on previous patch by Aaron Ballman · 13 years ago
- 21eb6d4 Detecting illegal instantiations of abstract types when using a function-style cast. Fixed PR12658. by Aaron Ballman · 13 years ago
- f108c63 A conversion operator in a base class shouldn't hide another conversion operator by Richard Smith · 13 years ago
- bbba25f Thread safety analysis: check for LOCKABLE attribute on base classes. by DeLesley Hutchins · 13 years ago
- 9087599 Skip checking for infinite for-loops if there are global or static variables by Richard Trieu · 13 years ago
- e0d3b4c Add -Wimplicit-fallthrough warning flag, which warns on fallthrough between by Richard Smith · 13 years ago
- 82129e2 Add commas to for loop warning to separate variable names. by Richard Trieu · 13 years ago
- 60f2024 Thread safety analysis: additional support for smart pointers in lock expressions. by DeLesley Hutchins · 13 years ago
- f26efd7 Thread Safety Analysis: fixed attribute handling for lock_returned attribute. by DeLesley Hutchins · 13 years ago
- 6deb820 Disable our non-standard delayed parsing of exception specifications. Delaying by Richard Smith · 13 years ago
- 12f3297 Try harder to recognize hidden tag type names in potential declarations instead by Kaelyn Uhrain · 13 years ago
- 4e31b4d Extend the error about incompatible visibility attributes in different by Rafael Espindola · 13 years ago
- ca2e1b7 Workaround a miscompile in 483.xalancbmk while we figure it out. by David Blaikie · 13 years ago
- 5729672 PR12710 - broken default argument handling for templates. by David Blaikie · 13 years ago
- 8d59dee My first effort to do this more subtly failed, so elaborately by John McCall · 13 years ago
- aa54986 Remove -Wc++98-compat warning for an outrageously-rare circumstance of 'this' by Richard Smith · 13 years ago
- c1c0725 Fix PR12378: provide conversion warnings on default args of function templates by David Blaikie · 13 years ago
- 694e796 Add -Wloop-analysis. This warning will fire on for loops which the variables by Richard Trieu · 13 years ago
- 98f71aa C++11 weakens the requirement for types used with offsetof from POD to standard layout type. by Benjamin Kramer · 13 years ago
- 152f6b7 Rename isPODType (using the C++98 rules) into isCXX98PODType and make isPODType decide which one to use based on LangOptions. by Benjamin Kramer · 13 years ago
- 470360d Revert "Use the C++11 definition of PODness for __is_pod in C++11 mode." by Benjamin Kramer · 13 years ago
- 046e869 Use the C++11 definition of PODness for __is_pod in C++11 mode. by Benjamin Kramer · 13 years ago
- a1366cb PR12224 (sort of): Diagnose inheriting constructor declarations in C++11 mode. by Richard Smith · 13 years ago
- d601c62 Add test case for rdar://11293995 by Argyrios Kyrtzidis · 13 years ago
- 1de9d7d Fix a crash-on-invalid where the constant evaluator would try to by John McCall · 13 years ago
- a43ea64 PR12647: An alias template instantiation which occurs in a SFINAE context is by Richard Smith · 13 years ago
- 6e4a0af PR12660: Don't crash when initializing a const reference from a braced init list by Richard Smith · 13 years ago
- 86e6fdc Two missing -Wc++98-compat warnings, for null pointers as non-type template by Richard Smith · 13 years ago
- 2b90f76 Add an error message with fixit hint for changing '.' to '->'. by Kaelyn Uhrain · 13 years ago
- 64b111e Thread safety analysis: refactor test cases so that the style is consistent. by DeLesley Hutchins · 13 years ago
- aed9ea3 Thread safety analysis: support the use of pt_guarded_by attributes by DeLesley Hutchins · 13 years ago
- 79747e0 Thread-safety analysis: support new "pointer to member" syntax for by DeLesley Hutchins · 13 years ago
- a4156b8 Fix regression in r154844. If necessary, defer computing adjusted destructor by Richard Smith · 13 years ago
- 7d90fe5 Fix a QoI bug reported by a user. by Matt Beaumont-Gay · 13 years ago
- ae519c4 Thread safety analysis: split warnings into two groups: attribute warnings by DeLesley Hutchins · 13 years ago
- 03544fc Add missing -Wc++98-compat warnings for initializer list initializations which by Richard Smith · 13 years ago
- 74e2fc3 Implement the last part of C++ [class.mem]p2, delaying the parsing of by Douglas Gregor · 13 years ago
- cefc3af Implement C++11 [expr.prim.general]p3, which permits the use of 'this' by Douglas Gregor · 13 years ago
- 030c7e9 Fix tests that weren't actually verifying anything. by David Blaikie · 13 years ago
- fe58720 PR12226: don't generate wrong code if a braced string literal is used to by Richard Smith · 13 years ago
- a1c4f7c PR12500: Improve the wording of the diagnostic for a redefinition of a name by Richard Smith · 13 years ago
- 97b57a2 When we're flagging a protected scope to prevent jumps into the by John McCall · 13 years ago
- c02af35 Add -Wuninitialized test for C++11 lambdas. by Ted Kremenek · 13 years ago
- f7ecc30 Compute standard conversion sequences for conversions to atomic by Douglas Gregor · 13 years ago
- 994d73f Part of PR10101: after a parse error in a declaration, try harder to find the by Richard Smith · 13 years ago
- 69a30b8 When we determine that an initialization sequence failed due to an by Douglas Gregor · 13 years ago
- 6ee326a Disambiguation of '[[': by Richard Smith · 13 years ago
- 83cad45 Thread safety analysis: downgraded requirement that mutex expressions refer to a lockable type from error to warning. by DeLesley Hutchins · 13 years ago
- 0121183 Test for r154189/PR12481 by Matt Beaumont-Gay · 13 years ago
- cf2fa2f Fixed scoping error for late parsed attributes in nested classes. by DeLesley Hutchins · 13 years ago
- bf9658c Point the caret at the error for the 'expected namespace name' diagnostic in by Richard Smith · 13 years ago
- a85cf39 Improve diagnostics for invalid use of non-static members / this: by Richard Smith · 13 years ago
- 4fd05dc Add triples to these tests to keep them working on Windows, by Richard Smith · 13 years ago
- 69f50e7 Fix assertions and wrong output from StmtPrinter's string literal printing. by Richard Smith · 13 years ago
- e31b8fb Enable warn_impcast_literal_float_to_integer by default. by David Blaikie · 13 years ago
- 5b4bf13 Allow a conversion from the empty initializer list {} to an by Douglas Gregor · 13 years ago
- b4051e7 Implement C++11 [temp.arg.nontype]'s permission to use the address of an object by Richard Smith · 13 years ago
- d280389 When performing template argument deduction for an initializer list, by Douglas Gregor · 13 years ago
- 173a37a Remove more redundant lookups. Add a new "all_lookups_iterator" which provides by Nick Lewycky · 13 years ago
- 5bdaac5 Finish PR10217: Ensure we say that a special member was implicitly, not by Richard Smith · 13 years ago
- 70e24fc Properly handle explicit constructors in list-initialization. Fixes PR12120. by Sebastian Redl · 13 years ago
- 6c4c36c PR10217: Provide diagnostics explaining why an implicitly-deleted special by Richard Smith · 13 years ago
- 6960587 Unify and fix our checking of C++ [dcl.meaning]p1's requirements by Douglas Gregor · 13 years ago
- f78c0f9 Even more careful consideration of C++11 13.3.3.1p4. Fixes PR12241. by Sebastian Redl · 13 years ago
- 412e0cc When we see 'Class(X' or 'Class::Class(X' and we suspect that it names a by Richard Smith · 13 years ago
- 0724b7c Add a special-case diagnostic for one of the more obnoxious special cases of by Richard Smith · 13 years ago