Index: clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-explicit-conversions.rst =================================================================== --- clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-explicit-conversions.rst +++ clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-explicit-conversions.rst @@ -1,9 +1,11 @@ .. title:: clang-tidy - hicpp-explicit-conversions +.. meta:: + :http-equiv=refresh: 5;URL=google-explicit-constructor.html hicpp-explicit-conversions ========================== -This check is an alias for `google-explicit-constructor `_. +This check is an alias for `google-explicit-constructor `_. Used to enforce parts of `rule 5.4.1 `_. This check will enforce that constructors and conversion operators are marked `explicit`. Other forms of casting checks are implemented in other places. Index: clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-function-size.rst =================================================================== --- clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-function-size.rst +++ clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-function-size.rst @@ -1,9 +1,11 @@ .. title:: clang-tidy - hicpp-function-size +.. meta:: + :http-equiv=refresh: 5;URL=readability-function-size.html hicpp-function-size =================== -This check is an alias for `readability-function-size `_. +This check is an alias for `readability-function-size `_. Useful to enforce multiple sections on function complexity. - `rule 8.2.2 `_ Index: clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-invalid-access-moved.rst =================================================================== --- clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-invalid-access-moved.rst +++ clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-invalid-access-moved.rst @@ -1,8 +1,10 @@ .. title:: clang-tidy - hicpp-invalid-access-moved +.. meta:: + :http-equiv=refresh: 5;URL=misc-use-after-move.html hicpp-invalid-access-moved ========================== -This check is an alias for `misc-use-after-move `_. +This check is an alias for `misc-use-after-move `_. Implements parts of the `rule 8.4.1 `_ to check if moved-from objects are accessed. Index: clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-member-init.rst =================================================================== --- clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-member-init.rst +++ clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-member-init.rst @@ -1,9 +1,11 @@ .. title:: clang-tidy - hicpp-member-init +.. meta:: + :http-equiv=refresh: 5;URL=cppcoreguidelines-pro-type-member-init.html hicpp-member-init ================= -This check is an alias for `cppcoreguidelines-pro-type-member-init `_. +This check is an alias for `cppcoreguidelines-pro-type-member-init `_. Implements the check for `rule 12.4.2 `_ to initialize class members in the right order. Index: clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-named-parameter.rst =================================================================== --- clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-named-parameter.rst +++ clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-named-parameter.rst @@ -1,8 +1,10 @@ .. title:: clang-tidy - hicpp-named-parameter +.. meta:: + :http-equiv=refresh: 5;URL=readability-named-parameter.html hicpp-named-parameter ===================== -This check is an alias for `readability-named-parameter `_. +This check is an alias for `readability-named-parameter `_. Implements `rule 8.2.1 `_. Index: clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-new-delete-operators.rst =================================================================== --- clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-new-delete-operators.rst +++ clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-new-delete-operators.rst @@ -1,8 +1,10 @@ .. title:: clang-tidy - hicpp-new-delete-operators +.. meta:: + :http-equiv=refresh: 5;URL=misc-new-delete-overloads.html hicpp-new-delete-operators ========================== -This check is an alias for `misc-new-delete-overloads `_. +This check is an alias for `misc-new-delete-overloads `_. Implements `rule 12.3.1 `_ to ensure the `new` and `delete` operators have the correct signature. Index: clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-noexcept-move.rst =================================================================== --- clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-noexcept-move.rst +++ clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-noexcept-move.rst @@ -1,7 +1,9 @@ .. title:: clang-tidy - hicpp-noexcept-move +.. meta:: + :http-equiv=refresh: 5;URL=misc-noexcept-moveconstructor.html hicpp-noexcept-move =================== -This check is an alias for `misc-noexcept-moveconstructor `_. +This check is an alias for `misc-noexcept-moveconstructor `_. Checks `rule 12.5.4 `_ to mark move assignment and move construction `noexcept`. Index: clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-special-member-functions.rst =================================================================== --- clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-special-member-functions.rst +++ clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-special-member-functions.rst @@ -1,7 +1,9 @@ .. title:: clang-tidy - hicpp-special-member-functions +.. meta:: + :http-equiv=refresh: 5;URL=cppcoreguidelines-special-member-functions.html hicpp-special-member-functions ============================== -This check is an alias for `cppcoreguidelines-special-member-functions `_. +This check is an alias for `cppcoreguidelines-special-member-functions `_. Checks that special member functions have the correct signature, according to `rule 12.5.7 `_. Index: clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-undelegated-constructor.rst =================================================================== --- clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-undelegated-constructor.rst +++ clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-undelegated-constructor.rst @@ -1,9 +1,11 @@ .. title:: clang-tidy - hicpp-undelegated-construtor +.. meta:: + :http-equiv=refresh: 5;URL=misc-undelegated-constructor.html hicpp-undelegated-constructor ============================= -This check is an alias for `misc-undelegated-constructor `_. +This check is an alias for `misc-undelegated-constructor `_. Partially implements `rule 12.4.5 `_ to find misplaced constructor calls inside a constructor. Index: clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-use-equals-default.rst =================================================================== --- clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-use-equals-default.rst +++ clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-use-equals-default.rst @@ -1,7 +1,9 @@ .. title:: clang-tidy - hicpp-use-equals-defaults +.. meta:: + :http-equiv=refresh: 5;URL=modernize-use-equals-default.html hicpp-use-equals-default ======================== -This check is an alias for `modernize-use-equals-default `_. +This check is an alias for `modernize-use-equals-default `_. Implements `rule 12.5.1 `_ to explicitly default special member functions. Index: clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-use-equals-delete.rst =================================================================== --- clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-use-equals-delete.rst +++ clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-use-equals-delete.rst @@ -1,8 +1,10 @@ .. title:: clang-tidy - hicpp-use-equals-delete +.. meta:: + :http-equiv=refresh: 5;URL=modernize-use-equals-delete.html hicpp-use-equals-delete ======================= -This check is an alias for `modernize-use-equals-delete `_. +This check is an alias for `modernize-use-equals-delete `_. Implements `rule 12.5.1 `_ to explicitly default or delete special member functions. Index: clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-use-override.rst =================================================================== --- clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-use-override.rst +++ clang-tools-extra/trunk/docs/clang-tidy/checks/hicpp-use-override.rst @@ -1,8 +1,10 @@ .. title:: clang-tidy - hicpp-use-override +.. meta:: + :http-equiv=refresh: 5;URL=modernize-use-override.html hicpp-use-override ================== -This check is an alias for `modernize-use-override `_. +This check is an alias for `modernize-use-override `_. Implements `rule 10.2.1 `_ to declare a virtual function `override` when overriding. Index: clang-tools-extra/trunk/docs/clang-tidy/checks/list.rst =================================================================== --- clang-tools-extra/trunk/docs/clang-tidy/checks/list.rst +++ clang-tools-extra/trunk/docs/clang-tidy/checks/list.rst @@ -60,19 +60,19 @@ google-runtime-member-string-references google-runtime-operator google-runtime-references - hicpp-explicit-conversions - hicpp-function-size - hicpp-invalid-access-moved - hicpp-member-init - hicpp-named-parameter - hicpp-new-delete-operators + hicpp-explicit-conversions (redirects to google-explicit-constructor) + hicpp-function-size (redirects to readability-function-size) + hicpp-invalid-access-moved (redirects to misc-use-after-move) + hicpp-member-init (redirects to cppcoreguidelines-pro-type-member-init) + hicpp-named-parameter (redirects to readability-named-parameter) + hicpp-new-delete-operators (redirects to misc-new-delete-overloads) hicpp-no-assembler - hicpp-noexcept-move - hicpp-special-member-functions - hicpp-undelegated-constructor - hicpp-use-equals-default - hicpp-use-equals-delete - hicpp-use-override + hicpp-noexcept-move (redirects to misc-noexcept-moveconstructor) + hicpp-special-member-functions (redirects to cppcoreguidelines-special-member-functions) + hicpp-undelegated-constructor (redirects to misc-undelegated-constructor) + hicpp-use-equals-default (redirects to modernize-use-equals-default) + hicpp-use-equals-delete (redirects to modernize-use-equals-delete) + hicpp-use-override (redirects to modernize-use-override) llvm-header-guard llvm-include-order llvm-namespace-comment