| Commit message (Expand) | Author | Age | Files | Lines |
| * | [-fms-extensions] Allow missing exception specifications in redeclarations a... | David Majnemer | 2015-10-20 | 1 | -0/+8 |
| * | Don't try to get a CXXRecordDecl from a non-class TemplateSpecializationType. | Kaelyn Takata | 2015-10-01 | 1 | -0/+10 |
| * | MS extensions: Properly diagnose address of MS property decl | Reid Kleckner | 2015-02-24 | 1 | -0/+12 |
| * | Recognize __unaligned keyword after type specifier | Nico Rieck | 2014-12-04 | 1 | -0/+1 |
| * | c++11 patch to issue warning on missing 'override' on | Fariborz Jahanian | 2014-10-27 | 1 | -3/+4 |
| * | Revert r218925 - "Patch to warn if 'override' is missing" | Alexander Potapenko | 2014-10-03 | 1 | -2/+2 |
| * | Patch to warn if 'override' is missing | Fariborz Jahanian | 2014-10-02 | 1 | -2/+2 |
| * | MSVC compat: Allow lookup of friend types in enclosing namespaces | Reid Kleckner | 2014-07-10 | 1 | -23/+0 |
| * | Sema: Static redeclaration after extern declarations is a Microsoft Extension | David Majnemer | 2014-06-18 | 1 | -1/+4 |
| * | Allow dllimport/dllexport on inline functions and adjust the linkage. | Hans Wennborg | 2014-05-15 | 1 | -1/+1 |
| * | Sema: Check dll attributes on redeclarations | Nico Rieck | 2014-03-31 | 1 | -2/+3 |
| * | Move the warning about unused relational comparison from -Wunused-value to | Richard Trieu | 2014-03-11 | 1 | -1/+1 |
| * | Pre-declare '::type_info' in MicrosoftMode only, not MicrosoftExt | Alp Toker | 2014-01-05 | 1 | -4/+0 |
| * | Teach the diagnostics engine about the Attr type to make reporting on semanti... | Aaron Ballman | 2013-12-26 | 1 | -10/+10 |
| * | Parse Microsoft __declspec appearing after class body | Alp Toker | 2013-11-24 | 1 | -0/+11 |
| * | [-fms-extensions] Permit 'override' in C++98 and 'sealed' as a synonym for 'f... | David Majnemer | 2013-10-18 | 1 | -0/+25 |
| * | Under -fms-extensions, only inject a friend tag name when we didn't see a tag... | Douglas Gregor | 2013-06-27 | 1 | -0/+20 |
| * | This patch fixes PR16395, when HandleMSProperty returns null due to a declara... | Aaron Ballman | 2013-06-26 | 1 | -0/+4 |
| * | [Windows] Fix __declspec(property) when the getter returns a ref | Reid Kleckner | 2013-06-19 | 1 | -0/+17 |
| * | Disallow reinterpret_cast from pointer to bool on Windows | Hans Wennborg | 2013-06-06 | 1 | -1/+7 |
| * | Microsoft has a language extension which allows union members to be | Aaron Ballman | 2013-05-30 | 1 | -0/+5 |
| * | Don't put too much thought into whether or not to capture a | John McCall | 2013-04-16 | 1 | -4/+5 |
| * | Basic support for Microsoft property declarations and | John McCall | 2013-04-16 | 1 | -0/+124 |
| * | Accept over-qualified constructor in MSVC emulation mode | Dmitri Gribenko | 2013-02-12 | 1 | -0/+4 |
| * | Change diagnostics for enums with fixed underlying type so in C++98 mode, we ... | Eli Friedman | 2012-11-02 | 1 | -3/+3 |
| * | Promote the warning about extra qualification on a declaration from a | Douglas Gregor | 2012-09-13 | 1 | -0/+1 |
| * | Shift Microsoft enum extensions from -fms-extensions to -fms-compatibility, s... | Eli Friedman | 2012-02-16 | 1 | -5/+0 |
| * | In Microsoft Mode, disable the C++11 strict integral conversion rules for enu... | Francois Pichet | 2012-01-21 | 1 | -5/+0 |
| * | Treat the Microsoft/Borland keyword "__except" as a context-sensitive | Douglas Gregor | 2011-10-21 | 1 | -0/+3 |
| * | When we end up having to parse the initializer of a C++ member early | Douglas Gregor | 2011-10-17 | 1 | -0/+7 |
| * | [microsoft] Move missing typename warning from -fms-extensions to -fms-compat... | Francois Pichet | 2011-09-21 | 1 | -34/+0 |
| * | Move Microsoft access specifier bug emulation from -fms-extensions to -fm-com... | Francois Pichet | 2011-09-20 | 1 | -20/+0 |
| * | Move the "jump bypasses variable initialization" error -> warning downgrade f... | Francois Pichet | 2011-09-18 | 1 | -53/+0 |
| * | In Microsoft mode, warn if an indirect goto jump over a variable initialization. | Francois Pichet | 2011-09-16 | 1 | -8/+8 |
| * | In Microsoft mode, downgrade "goto into protected scope" from error to warnin... | Francois Pichet | 2011-09-13 | 1 | -1/+55 |
| * | Add support for MSVC __unaligned attribute. Necessary to parse MSVC headers i... | Francois Pichet | 2011-08-18 | 1 | -0/+4 |
| * | Microsoft friend acting as a forward declaration; try#2. Now only 2 lines. | Francois Pichet | 2011-06-01 | 1 | -1/+26 |
| * | Revert 132332 (Microsoft friend as a forward declaration), John McCall pointe... | Francois Pichet | 2011-05-31 | 1 | -25/+0 |
| * | For compatibility with MSVC, a friend declaration also act as a forward decla... | Francois Pichet | 2011-05-31 | 1 | -0/+25 |
| * | MSVC doesn't do any validation regarding exception specification. | Francois Pichet | 2011-05-24 | 1 | -0/+11 |
| * | Emulate a MSVC bug where if during an using declaration name lookup, the decl... | Francois Pichet | 2011-05-23 | 1 | -0/+19 |
| * | Revert 131347. It asserts if the specialization in within a class template: | Francois Pichet | 2011-05-14 | 1 | -7/+0 |
| * | In Microsoft mode, allow template function explicit specialization at class s... | Francois Pichet | 2011-05-14 | 1 | -0/+7 |
| * | In Microsoft mode, allow conversion from pointer to integral type no matter w... | Francois Pichet | 2011-05-11 | 1 | -0/+8 |
| * | Fix test. | Francois Pichet | 2011-05-08 | 1 | -2/+1 |
| * | Allow implicit conversion from function pointer to void* in Microsoft mode. | Francois Pichet | 2011-05-08 | 1 | -1/+11 |
| * | Downgrade error "static declaration of 'foo' follows non-static declaration" ... | Francois Pichet | 2011-04-22 | 1 | -0/+12 |
| * | In Microsoft mode, within class scope, if a CXXScopeSpec's type is equal to t... | Francois Pichet | 2011-04-13 | 1 | -0/+32 |
| * | MSVC accepts that default parameters be redefined for member functions | Francois Pichet | 2011-04-10 | 1 | -0/+9 |
| * | Add a triple to make the test friendly on no windows platform. | Francois Pichet | 2011-03-29 | 1 | -1/+1 |