summaryrefslogtreecommitdiff
path: root/sphinx/domains/cpp.py
Commit message (Expand)AuthorAgeFilesLines
* Shorten long lines.v1.0.81.0Georg Brandl2011-09-231-1/+2
* Fix #648: Fix line numbers reported in warnings about undefined references.Georg Brandl2011-09-231-7/+4
* Attach arrays to the name not the type for C++ domain and fixed a few renderi...Armin Ronacher2011-09-231-40/+86
* Added support for strings with commas in template definitions.Armin Ronacher2011-09-221-1/+1
* Added support for noexcept specifiersArmin Ronacher2011-09-221-2/+6
* Small refactoring for how modifiers are parsed in the C++ domain.Armin Ronacher2011-09-221-11/+10
* Added support for constexpr in function signaturesArmin Ronacher2011-09-221-9/+16
* Be explicit about rvalue references.Armin Ronacher2011-09-221-2/+14
* Added support for non-name template arguments. This fixes #696Armin Ronacher2011-09-221-4/+24
* Support varargs in C++ function signatures.Chris Pickel2011-04-191-0/+7
* C++ domain now supports array definitions.Armin Ronacher2011-01-071-0/+19
* Fix #677: allow multiple signatures in C++ domain directives.Georg Brandl2011-09-221-1/+1
* Complain about unparseable C++ references.Georg Brandl2011-01-081-2/+4
* Fix general index links for C++ domain objects.Georg Brandl2011-01-071-1/+1
* Fix tracebacks occurring for duplicate C++ domain objects.Georg Brandl2011-01-061-8/+9
* #560: Change default split_owner to return something useful.Georg Brandl2011-01-041-5/+2
* New year update.Georg Brandl2011-01-041-1/+1
* Fix pretty-printing of C++ function arguments.Georg Brandl2011-01-041-3/+2
* Fix CPP domain modifiers: short can be unsigned and signed, but not short.Georg Brandl2010-12-291-3/+3
* Account for arguments with only a type and no parameter nameMichael Jones2010-11-181-3/+2
* Update cpp domain identifier regex to match destructorsMichael Jones2010-11-181-1/+1
* Remove unused import.Georg Brandl2010-08-241-1/+0
* Nicer solution for the C++ fixArmin Ronacher2010-05-301-6/+2
* Fixed a C++ bug that caused bad references to be generated. This alsoArmin Ronacher2010-05-301-5/+10
* Fixed a bug in the C++ domain and documented moreArmin Ronacher2010-05-271-0/+2
* Rename default_domain to primary_domain; give it special semantics.Georg Brandl2010-05-231-6/+5
* #413: Added a way for intersphinx to refer to named labels in otherGeorg Brandl2010-05-231-1/+1
* long double exists.Armin Ronacher2010-03-301-4/+15
* More operators for C++. Forgot about new/delete and some other less usedArmin Ronacher2010-03-021-53/+75
* Added first CPP testArmin Ronacher2010-03-021-0/+14
* Fixed reference targetsArmin Ronacher2010-03-011-9/+10
* Fixed two undefined errors.Armin Ronacher2010-03-011-2/+2
* Relative references work now for the C++ domainArmin Ronacher2010-03-011-62/+136
* Added basic modifier supportArmin Ronacher2010-03-011-26/+73
* Added namespace directive to CPP domain, warn instead of raise exceptionsArmin Ronacher2010-03-011-29/+76
* Started working on support for c++ xrefsArmin Ronacher2010-03-011-2/+9
* Refactored again. This time added a new type PrefixedNameDefExpr that isArmin Ronacher2010-03-011-52/+86
* Added type supportArmin Ronacher2010-03-011-12/+70
* Heavily improved const support, create proper identifiers that pass forArmin Ronacher2010-03-011-50/+167
* Refactored description objects again.Armin Ronacher2010-03-011-35/+72
* Prefix classes with "class " and removed useless desc_type node.Armin Ronacher2010-03-011-14/+6
* Proper indices for the c++ object descriptions now. Also broke up theArmin Ronacher2010-03-011-53/+122
* Properly parses operator definitions now. 'std:stringArmin Ronacher2010-02-281-21/+96
* C++ function signatures are now properly converted to rst nodes.Armin Ronacher2010-02-281-7/+159
* Added first version of the C++ signature parserArmin Ronacher2010-02-281-0/+340