summaryrefslogtreecommitdiffstats
path: root/clang/www
Commit message (Collapse)AuthorAgeFilesLines
...
* Tweak the C++11 status prose a bit. We still need better user guidance on ↵Douglas Gregor2011-10-141-2/+1
| | | | | | the standard library issue llvm-svn: 142019
* Switch the C++11 status table from a developer-centric list to aDouglas Gregor2011-10-141-587/+318
| | | | | | | user-centric list, with Clang version numbers, following GCC's lead (and user requests). llvm-svn: 142015
* Updating the Clang website to refer to C++'11 instead of C++'0xDavid Blaikie2011-10-144-15/+15
| | | | llvm-svn: 141949
* Update open source static analyzer build.Ted Kremenek2011-10-142-1/+14
| | | | llvm-svn: 141943
* Now that we support move generation, mention this in the language extension ↵Sebastian Redl2011-10-101-13/+13
| | | | | | and C++ status pages. Also update the C++ status for default functions, which are complete now that we can generate move functions, and destructor exception specifications, which I did a while ago. llvm-svn: 141558
* Document the incompatibility that stems from Clang properly implementDouglas Gregor2011-09-271-1/+39
| | | | | | | | | | the rule that defines the implicit copy constructor/implicit copy asssignment operator as deleted when a move constructor or move assignment operator has been explicitly declared. This has hit a number of people because Boost 1.47.0's shared_ptr fails to declare a copy constructor. llvm-svn: 140621
* Update C++0x status page to reflect support for raw string literals.Craig Topper2011-08-111-4/+4
| | | | llvm-svn: 137299
* Fix HTML.Benjamin Kramer2011-08-061-1/+1
| | | | llvm-svn: 137010
* give an example of a 'lowered vtable reference'Chris Lattner2011-08-031-5/+28
| | | | llvm-svn: 136780
* Update C++0x status page to reflect support for unicode string and character ↵Douglas Gregor2011-07-271-4/+4
| | | | | | literals, from Craig Topper llvm-svn: 136216
* Easier debugging with Visual Studio Visualizers, from Nikola Smiljanic!Douglas Gregor2011-07-271-0/+22
| | | | llvm-svn: 136207
* Update C++0x status for explicit override controls and explicitDouglas Gregor2011-07-251-14/+14
| | | | | | conversion operators, from Jonathan Sauer. llvm-svn: 135932
* www/get_started.html: Fix a phrase, "in the *build* directory* in the ↵NAKAMURA Takumi2011-07-251-1/+1
| | | | | | instructions of Visual Studio. Thanks to Andreas Bittel to point it out. llvm-svn: 135907
* add link to 2010 dev mtgChris Lattner2011-07-241-2/+3
| | | | llvm-svn: 135892
* Add a link-friendly name to the Clang extension acceptance criteriaDouglas Gregor2011-07-231-1/+1
| | | | llvm-svn: 135859
* Document the criteria for evaluating a proposed extension to Clang.Douglas Gregor2011-07-231-1/+30
| | | | llvm-svn: 135858
* Update cxx_status page on www: clang has had full support for in-class ↵Richard Smith2011-07-211-4/+4
| | | | | | initializers since r132890. llvm-svn: 135689
* Clean up the C++ status page by eliminating the utterly unnecessary set of ↵Douglas Gregor2011-07-211-58/+9
| | | | | | projects. C++98/03 is sooooo yesterday llvm-svn: 135687
* Update C++0x nullptr status, from Jonathan SauerDouglas Gregor2011-07-211-2/+2
| | | | llvm-svn: 135686
* Remove extraneous period.Bill Wendling2011-07-201-1/+1
| | | | llvm-svn: 135619
* Hyphenate "argument-dependent".Jay Foad2011-06-141-2/+2
| | | | llvm-svn: 132989
* Remove stale reference to libIndex.Ted Kremenek2011-06-081-1/+0
| | | | llvm-svn: 132757
* Fix PR10053: Improve diagnostics and error recovery for code which some ↵Richard Smith2011-06-051-10/+14
| | | | | | compilers incorrectly accept due to a lack of proper support for two-phase name lookup. llvm-svn: 132672
* Improve the readability of the "Expressive Diagnostics" page, from Dave Yost!Douglas Gregor2011-06-011-63/+60
| | | | llvm-svn: 132432
* make this a bit less confusingChris Lattner2011-05-281-0/+1
| | | | llvm-svn: 132262
* Update checker build to checker-257.Ted Kremenek2011-05-252-2/+15
| | | | llvm-svn: 132060
* Eliminate old, useless tutorial pageDouglas Gregor2011-05-131-56/+0
| | | | llvm-svn: 131292
* some updates.Chris Lattner2011-05-131-10/+7
| | | | llvm-svn: 131286
* this never happened.Chris Lattner2011-05-131-30/+0
| | | | llvm-svn: 131285
* remove some old redirect pages. We're into our 3rd year of redirecting, the ↵Chris Lattner2011-05-133-51/+0
| | | | | | world should have adjusted by now :) llvm-svn: 131284
* Update www: we now mangle references to function parameters properly. Also, ↵Richard Smith2011-05-051-2/+2
| | | | | | this is really more a decltype issue rather than a late-specified return type issue. llvm-svn: 130958
* Implement support for C++0x alias templates.Richard Smith2011-05-051-5/+4
| | | | llvm-svn: 130953
* Remove several more rvalue references from swap arguments in libstdc++4.4.Jeffrey Yasskin2011-05-031-0/+239
| | | | | | unique_ptr and shared_ptr changes by Daniel Mierswa! llvm-svn: 130762
* Fully implement delegating constructors!Alexis Hunt2011-05-011-4/+4
| | | | | | | | | | As far as I know, this implementation is complete but might be missing a few optimizations. Exceptions and virtual bases are handled correctly. Because I'm an optimist, the web page has appropriately been updated. If I'm wrong, feel free to downgrade its support categories. llvm-svn: 130642
* Update www: clang now supports C++11 for-range and non-template type aliases.Richard Smith2011-04-151-10/+11
| | | | llvm-svn: 129569
* fix a bunch of comment typos found by codespell. Patch byChris Lattner2011-04-153-3/+3
| | | | | | Luis Felipe Strano Moraes! llvm-svn: 129559
* Name mangling of late-specified return types doesn't work if the return type ↵Richard Smith2011-04-141-1/+1
| | | | | | | | | | references the argument types: template<typename T> auto f(T a) -> decltype(a.foo()); Since this is the primary reason for the introduction of this feature, downgrade implementation status to "Some examples work". llvm-svn: 129533
* Update public analyzer build to checker-256.Ted Kremenek2011-04-132-1/+51
| | | | llvm-svn: 129473
* Added link to LLVM cmake page in Visual Studio section.John Thompson2011-04-061-0/+7
| | | | llvm-svn: 129013
* clang has had full and tested support for C++0x trailing-return-type and ↵Richard Smith2011-04-031-8/+8
| | | | | | | | auto type deduction since r126166. Update the website to reflect this, and add a __has_feature test. trailing-return-type codegen is not tested yet (name mangling in particular). llvm-svn: 128787
* Add a libstdc++-4.4 patch for C++0x to the website.Jeffrey Yasskin2011-03-292-0/+374
| | | | llvm-svn: 128498
* Clang supports __STDC_HOSTED__. Patch by Jonathan SauerDouglas Gregor2011-03-271-1/+1
| | | | llvm-svn: 128377
* www/get_started.html: Fix a few URLs.NAKAMURA Takumi2011-03-271-4/+4
| | | | llvm-svn: 128372
* www/hacking.html: Add blurb of LLVM_LIT_TOOLS_DIR.NAKAMURA Takumi2011-03-181-4/+12
| | | | llvm-svn: 127863
* www/hacking.html: Cosmetic change, to detabify, eliminate whitespace, and ↵NAKAMURA Takumi2011-03-181-36/+36
| | | | | | add proper slashes to URL. llvm-svn: 127862
* Mention an XML printer on the Open Projects pageDouglas Gregor2011-03-091-0/+7
| | | | llvm-svn: 127336
* Update the www to indicate that auto is now implemented.Richard Smith2011-02-231-4/+4
| | | | llvm-svn: 126280
* Update text for where to file analyzer bugs.Ted Kremenek2011-02-181-1/+1
| | | | llvm-svn: 125983
* Update static analyzer build to checker-255.Ted Kremenek2011-02-123-2/+15
| | | | llvm-svn: 125432
* More tweaks to the compatibility page.John McCall2011-02-031-22/+24
| | | | llvm-svn: 124792
OpenPOWER on IntegriCloud