summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/docs/conf.py
Commit message (Collapse)AuthorAgeFilesLines
* Bump the trunk version to 10.0.0svnHans Wennborg2019-07-181-2/+2
| | | | | | and clear the release notes. llvm-svn: 366427
* Revert "[clang-format] [PR25010] AllowShortIfStatementsOnASingleLine not ↵Paul Hoad2019-03-131-1/+1
| | | | | | | | working if an "else" statement is present" This reverts commit b358cbb9b78389e20f7be36e1a98e26515c3ecce. llvm-svn: 356030
* [clang-format] [PR25010] AllowShortIfStatementsOnASingleLine not working if ↵Paul Hoad2019-03-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | an "else" statement is present Summary: Addressing: PR25010 - https://bugs.llvm.org/show_bug.cgi?id=25010 Code like: ``` if(true) var++; else { var--; } ``` is reformatted to be ``` if (true) var++; else { var--; } ``` Even when `AllowShortIfStatementsOnASingleLine` is true The following revision comes from a +1'd suggestion in the PR to support AllowShortIfElseStatementsOnASingleLine This suppresses the clause prevents the merging of the if when there is a compound else Reviewers: klimek, djasper, JonasToth, alexfh, krasimir, reuk Reviewed By: reuk Subscribers: reuk, Higuoxing, jdoerfert, cfe-commits Tags: #clang-tools-extra Differential Revision: https://reviews.llvm.org/D59087 llvm-svn: 356029
* Added more detailed documentation for clangdDmitri Gribenko2019-02-271-1/+1
| | | | | | | | | | | | | | | | Summary: The text was written mostly by Sam McCall, screenshots are mostly made by me. Reviewers: ilya-biryukov Subscribers: ioeric, MaskRay, jkorous, arphaman, kadircet, jdoerfert, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D58710 llvm-svn: 354992
* Bump the trunk version to 9.0.0svnHans Wennborg2019-01-161-2/+2
| | | | llvm-svn: 351320
* Update docs version and clear release notes after 8.0.0 version bumpHans Wennborg2018-08-011-2/+2
| | | | llvm-svn: 338559
* Docs, release notes: update version to 7.0.0Hans Wennborg2018-01-031-2/+2
| | | | llvm-svn: 321730
* Bump docs version to 6.0Hans Wennborg2017-07-191-2/+2
| | | | llvm-svn: 308467
* Update docs/conf.py versionHans Wennborg2017-01-121-3/+3
| | | | llvm-svn: 291832
* docs/conf.py: update version to 4.0Hans Wennborg2016-07-181-2/+2
| | | | llvm-svn: 275849
* [docs] Update version (http://llvm.org/PR27253)Alexander Kornienko2016-04-071-2/+2
| | | | llvm-svn: 265655
* docs/conf.py: update copyright yearHans Wennborg2016-01-271-1/+2
| | | | llvm-svn: 258960
* Updated year (2014-2015).Alexander Kornienko2015-12-221-1/+1
| | | | llvm-svn: 256254
* docs/conf.py: bump version to 3.8Hans Wennborg2015-07-141-2/+2
| | | | llvm-svn: 242247
* docs/conf.py: bump version to 3.7Hans Wennborg2015-01-141-2/+2
| | | | llvm-svn: 226015
* Move clang-tools-extra docs 1.5 years into the future.Benjamin Kramer2014-09-081-2/+2
| | | | llvm-svn: 217369
* Update the copyright credits -- Happy new year 2014!NAKAMURA Takumi2014-01-011-1/+1
| | | | | FIXME: Dragonegg may be updated at non-trivial changes. llvm-svn: 198274
* Initial docs directoryEdwin Vane2013-02-141-0/+242
Adding a new docs directory, with files auto-generated by sphinx-quickstart, for user documentation for the various tools in the clang-tools-extra repository. Author: Jack Yang <jack.yang@intel.com> Reviewers: gribozavr, silvas llvm-svn: 175118
OpenPOWER on IntegriCloud