1. 54655be If parsing a trailing-return-type fails, don't pretend we didn't have one at by Richard Smith · 12 years ago
  2. 7756afa Fix PR13052 properly, by performing special member lookup to determine whether by Richard Smith · 12 years ago
  3. 2f68ca0 When diagnosing inaccessible temporary destructors in decltype expressions, use by Richard Smith · 12 years ago
  4. a971d24 Push the knowledge that we are parsing a type-id/type-name further into the by Richard Smith · 12 years ago
  5. 6ee326a Disambiguation of '[[': by Richard Smith · 12 years ago
  6. e47029a Temporary workaround for bug#12457: turn the 'constexpr function never produces by Richard Smith · 12 years ago
  7. 1b7f9cb Fix PR10447: lazily building name lookup tables for DeclContexts was broken. by Richard Smith · 13 years ago
  8. 7796eb5 Fix parsing of trailing-return-type. Types are syntactically prohibited from by Richard Smith · 13 years ago
  9. 69730c1 Fix parsing of type-specifier-seq's. Types are syntactically allowed to be by Richard Smith · 13 years ago
  10. 0cc323c static_assert: Allow any string-literal as the message, not just a character by Richard Smith · 13 years ago
  11. 0635aa7 Accept braced-init-lists in conditions, and, in passing, dramatically improve by Richard Smith · 13 years ago
  12. 76f3f69 Implement C++11 [expr.call]p11: If the operand to a decltype-specifier is a by Richard Smith · 13 years ago
  13. ff23488 Fix a constexpr FIXME: When implicitly instantiating the primary template for an by Richard Smith · 13 years ago
  14. 74e1ad9 constexpr tidyups: by Richard Smith · 13 years ago
  15. 86c3ae4 Update constexpr implementation to match CWG's chosen approach for core issues by Richard Smith · 13 years ago
  16. 6d9ef30 Implement the standard decltype() semantics described in C++11 by Douglas Gregor · 13 years ago
  17. d37b360 PR11684, core issue 1417: by Richard Smith · 13 years ago
  18. 30ecfad DR1359: A constexpr constructor does not need to initialize an empty struct or by Richard Smith · 13 years ago
  19. 3f83d0d Add more testing for r149776. by Richard Smith · 13 years ago
  20. d79093a constexpr: Implement DR1358: An instantiation of a constexpr function which by Richard Smith · 13 years ago
  21. f15fda0 constexpr: by Richard Smith · 13 years ago
  22. 8398cbf constexpr: Unlike other incomplete types, 'void' cannot possibly be completed as by Richard Smith · 13 years ago
  23. 745f514 constexpr: Implement the [dcl.constexpr]p5 check for whether a constexpr by Richard Smith · 13 years ago
  24. b832f6d Minor fixups for auto deduction of initializer lists. by Sebastian Redl · 13 years ago
  25. 3534050 PR11754: Reject non-static constexpr member functions in classes with virtual by Richard Smith · 13 years ago
  26. 9ec0ef3 constexpr is allowed on static member functions of non-literal classes. Per report on cfe-dev. by Eli Friedman · 13 years ago
  27. 7984de3 Improve 0-argument -Wvexing-parse diagnostic by adding notes with fix-its: by Richard Smith · 13 years ago
  28. bdad7a2 Update C++11 scoped enumeration support to match the final proposal: by Richard Smith · 13 years ago
  29. 2f0e88a David Blaikie and Chandler would like us to diagnose by Richard Smith · 13 years ago
  30. 1d7bcf4 Tweak to r147599 for PR10828: Move the check from the parser into sema, and use by Richard Smith · 13 years ago
  31. cb7709c PR10828: Produce a warning when a no-arguments function is declared in block by Richard Smith · 13 years ago
  32. 6180245 PR11614: Mark defaulted special constructors as constexpr if their implicit by Richard Smith · 13 years ago
  33. 7098cbd constexpr: diagnostic improvements for invalid lvalue-to-rvalue conversions in by Richard Smith · 13 years ago
  34. 1d238ea C++11 half of r147023: In C++11, additionally eagerly instantiate: by Richard Smith · 13 years ago
  35. 099e7f6 constexpr handling improvements. Produce detailed diagnostics when a 'constexpr' by Richard Smith · 13 years ago
  36. 2fe9b7f Modify how the -verify flag works. Currently, the verification string and by Richard Trieu · 13 years ago
  37. 32509f1 Resolve placeholder expressions before trying to deduce by John McCall · 13 years ago
  38. 1bf9a9e Represent an APValue based on a Decl as that Decl, rather than a DeclRefExpr by Richard Smith · 13 years ago
  39. 180f479 Constant expression evaluation: support for evaluation of structs and unions of by Richard Smith · 13 years ago
  40. 66f8571 constexpr: static data members declared constexpr are required to have an by Richard Smith · 13 years ago
  41. 839046a Add test missed from r143234. by Richard Smith · 13 years ago
  42. 5c27ee0 Undo unnecessary change by Douglas Gregor · 13 years ago
  43. c2c1144 Make the -Wc++11-compat warnings ignored by default, so we don't break by Douglas Gregor · 13 years ago
  44. 0661bd0c Attach class template attributes to the templated CXXRecordDecl, by Peter Collingbourne · 13 years ago
  45. 7a8a2e3 Permit auto SCS on parameter declarations, C++03 [dcl.stc]p2 by Peter Collingbourne · 13 years ago
  46. 5f31f08 Switch to the C++11 warning flags in tests. Patch by Ahmed Charles! by David Blaikie · 13 years ago
  47. 762bb9d Update all tests other than Driver/std.cpp to use -std=c++11 rather than by Richard Smith · 13 years ago
  48. b3df138 Switch diagnostic text from "C++0x" over to "C++11". by Douglas Gregor · 13 years ago
  49. 6e43375 constexpr: Disable checking of constructor member initializer lists for by Richard Smith · 13 years ago
  50. b5a0187 Diagnose attempts to declare a non-static data member with a by Douglas Gregor · 13 years ago
  51. 9f569cc constexpr: semantic checking for constexpr functions and constructors. Based in by Richard Smith · 13 years ago
  52. 55dec86 constexpr functions are implicitly const. More tests to follow. by Richard Smith · 13 years ago
  53. c6d990a constexpr: semantic checking for constexpr variables. by Richard Smith · 13 years ago
  54. 82d0b0a Add support for alignment-specifiers in C1X and C++11, remove by Peter Collingbourne · 13 years ago
  55. af130823 Don't allow template argument deduction to deduce a placeholder type, by Douglas Gregor · 13 years ago
  56. 87e96eb PR10458: Last part of providing 'auto' type specifier as an extension in C++98: permit it within type-ids. by Richard Smith · 13 years ago
  57. 8f4fb19 PR10458: Finesse behaviour of C++0x features when in pre-0x mode. Accept for-range and auto with an ExtWarn, and produce a -Wc++0x-compat warning in C++98 mode when auto is used as a storage class. by Richard Smith · 13 years ago
  58. af1fc7a Track in the AST whether a function is constexpr. by Richard Smith · 13 years ago
  59. 31862ba [ARC] When casting from a pointer to an objective-c object with known ownership, if the by Argyrios Kyrtzidis · 13 years ago
  60. 9a636e8 Extend the deduced/actual argument type checking of C++ by Douglas Gregor · 13 years ago
  61. 0f9dc86 When an explicit specialization has a storage specifier, error if that by Douglas Gregor · 13 years ago
  62. 51d7cdd Downgrade the error complaining about presence of a storage class by Douglas Gregor · 13 years ago
  63. 7a614d8 Implement support for C++11 in-class initialization of non-static data members. by Richard Smith · 13 years ago
  64. e885e18 Diagnose the presence of storage-class-specifiers on explicit by Douglas Gregor · 13 years ago
  65. b7ec906 Downgrade the error about re-opening an inline namespace as non-inline by Douglas Gregor · 13 years ago
  66. 1804174 PR9908: Fix the broken fix for PR9902 to get the template argument lists in the right order. by Richard Smith · 13 years ago
  67. 3e4c6c4 Implement support for C++0x alias templates. by Richard Smith · 13 years ago
  68. 3b88735 Extend Sema::ClassifyName() to support C++, ironing out a few issues by Douglas Gregor · 13 years ago
  69. 162e1c1 Support for C++11 (non-template) alias declarations. by Richard Smith · 13 years ago
  70. fc8f0e1 fix a bunch of comment typos found by codespell. Patch by by Chris Lattner · 13 years ago
  71. ad762fc Add support for C++0x's range-based for loops, as specified by the C++11 draft standard (N3291). by Richard Smith · 13 years ago
  72. cc20945 Support explicit template specialization and instantiation for members by Douglas Gregor · 14 years ago
  73. abea951 Add -fcxx-exceptions to all tests that use C++ exceptions. by Anders Carlsson · 14 years ago
  74. 12e3ece Provide Fixit warning when 'auto' is intended as storage by Fariborz Jahanian · 14 years ago
  75. e7397c6 Fix a few auto-related issues: by Richard Smith · 14 years ago
  76. 24d44ed Add reference to PR 9278 for archaeologists. by Richard Smith · 14 years ago
  77. ddc83f9 C++0x's deduced auto is illegal in typedefs. by Richard Smith · 14 years ago
  78. 483b9f3 Tweaks to C++0x deduced auto type support: by Richard Smith · 14 years ago
  79. 34b41d9 Implement the C++0x deduced 'auto' feature. by Richard Smith · 14 years ago
  80. e41721e Pass -fexceptions to all tests that use try/catch/throw. by Anders Carlsson · 14 years ago
  81. d880f52 Implement access checking for the "delete" operator. Fixes PR9050, by Douglas Gregor · 14 years ago
  82. 15e14a2 Get rid of [[hiding]], [[override]] and [[base_check]]. by Anders Carlsson · 14 years ago
  83. f89e042 Get rid of the [[final]] C++0x attribute. by Anders Carlsson · 14 years ago
  84. 8a72621 Revert r120063, it was wrong. by John McCall · 14 years ago
  85. fe4ea55 Redeclarations of using declarations are not okay in function scopes. by John McCall · 14 years ago
  86. fe7574b When performing name lookup for a namespace definition, only look into by Douglas Gregor · 14 years ago
  87. 693d467 Implement the first half of [dcl.attr.override]p6. by Anders Carlsson · 14 years ago
  88. 4d09e84 Implement [dcl.attr.override]p2 and add tests for p1 and p2. by Anders Carlsson · 14 years ago
  89. 7759919 Add test for [dcl.attr.final]p4. by Anders Carlsson · 14 years ago
  90. 8a40737 template-ids are looked up differently in friend declarations. by John McCall · 14 years ago
  91. 410c4f2 Make inline namespace not be transparent after all. The concept simply doesn't fit. Instead, special-case the few places where transparent contexts have the desired behavior for inline namespaces. Fixes a redeclaration issue in inline namespaces. by Sebastian Redl · 14 years ago
  92. 88e64ca Enable inline namespaces in C++03 as an extension. by Sebastian Redl · 14 years ago
  93. 03b16a7 Add a forgotten place where the enclosing namespace set matters, plus a big testcase for inline namespace fun. by Sebastian Redl · 14 years ago
  94. 4e4d570 Enable inline namespaces in the AST. by Sebastian Redl · 14 years ago
  95. d078e64 Parser support for inline namespaces by Sebastian Redl · 14 years ago
  96. 7f1c547 If name lookup finds different type declarations in different scopes by Douglas Gregor · 14 years ago
  97. 604eb65 Improve our handling of user-defined conversions when computing by Douglas Gregor · 14 years ago
  98. ed328c6 Diagnose the use of "inline" on block-scope function declarations in by Douglas Gregor · 14 years ago
  99. 09acc98 A using declaration can redeclare a typedef to the same type. These by Douglas Gregor · 14 years ago
  100. 9fde9c4 tests: Use %clangxx when using driver for C++, in case C++ support is disabled. by Daniel Dunbar · 14 years ago