<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bcm5719-llvm/clang-tools-extra/clang-tidy/google, branch meklort-10.0.1</title>
<subtitle>Project Ortega BCM5719 LLVM</subtitle>
<id>https://git.raptorcs.com/git/bcm5719-llvm/atom?h=meklort-10.0.1</id>
<link rel='self' href='https://git.raptorcs.com/git/bcm5719-llvm/atom?h=meklort-10.0.1'/>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/'/>
<updated>2020-01-04T15:28:41+00:00</updated>
<entry>
<title>NFC: Fix trivial typos in comments</title>
<updated>2020-01-04T15:28:41+00:00</updated>
<author>
<name>Kazuaki Ishizaki</name>
<email>ishizaki@jp.ibm.com</email>
</author>
<published>2020-01-04T15:28:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=b7ecf1c1c373c53183ef6ef66efbe4237ff7b96d'/>
<id>urn:sha1:b7ecf1c1c373c53183ef6ef66efbe4237ff7b96d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Use std::unique_ptr in ClangTidyCheckFactories</title>
<updated>2019-09-26T13:47:29+00:00</updated>
<author>
<name>Dmitri Gribenko</name>
<email>gribozavr@gmail.com</email>
</author>
<published>2019-09-26T13:47:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=5338ffcfa1d2c38be79634bf6f58d47f1df72252'/>
<id>urn:sha1:5338ffcfa1d2c38be79634bf6f58d47f1df72252</id>
<content type='text'>
I had to explicitly define some destructors that could only be defined
in the corresponding .cpp files.

llvm-svn: 372978
</content>
</entry>
<entry>
<title>[clang-tidy] Don't emit google-runtime-references warning for functions defined in macros.</title>
<updated>2019-08-23T08:47:27+00:00</updated>
<author>
<name>Haojian Wu</name>
<email>hokein@google.com</email>
</author>
<published>2019-08-23T08:47:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=c4905a232c9ba5bccfd99bd2649efaa1651ce0bd'/>
<id>urn:sha1:c4905a232c9ba5bccfd99bd2649efaa1651ce0bd</id>
<content type='text'>
Summary:
The macro are usually defined in the common/base headers which are hard
for normal users to modify it.

Reviewers: gribozavr, alexfh

Subscribers: xazax.hun, cfe-commits

Tags: #clang

Differential Revision: https://reviews.llvm.org/D66631

llvm-svn: 369739
</content>
</entry>
<entry>
<title>Remove \brief commands from doxygen comments.</title>
<updated>2019-08-22T11:32:57+00:00</updated>
<author>
<name>Dmitri Gribenko</name>
<email>gribozavr@gmail.com</email>
</author>
<published>2019-08-22T11:32:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=282dc72c8b84759dda4fe12420228158962351e8'/>
<id>urn:sha1:282dc72c8b84759dda4fe12420228158962351e8</id>
<content type='text'>
Summary:
We've been running doxygen with the autobrief option for a couple of
years now. This makes the \brief markers into our comments
redundant. Since they are a visual distraction and we don't want to
encourage more \brief markers in new code either, this patch removes
them all.

Patch produced by

  for i in $(git grep -l '\\brief'); do perl -pi -e 's/\\brief //g' $i &amp; done

[This is analogous to LLVM r331272 and CFE r331834]

Subscribers: srhines, nemanjai, javed.absar, kbarton, MaskRay, jkorous, arphaman, jfb, kadircet, jsji, cfe-commits

Tags: #clang

Differential Revision: https://reviews.llvm.org/D66578

llvm-svn: 369643
</content>
</entry>
<entry>
<title>[clang-tools-extra] Migrate llvm::make_unique to std::make_unique</title>
<updated>2019-08-14T23:52:23+00:00</updated>
<author>
<name>Jonas Devlieghere</name>
<email>jonas@devlieghere.com</email>
</author>
<published>2019-08-14T23:52:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=1c705d9c538d1d4a24f34e93be2582bc7e3a3da4'/>
<id>urn:sha1:1c705d9c538d1d4a24f34e93be2582bc7e3a3da4</id>
<content type='text'>
Now that we've moved to C++14, we no longer need the llvm::make_unique
implementation from STLExtras.h. This patch is a mechanical replacement
of (hopefully) all the llvm::make_unique instances across the monorepo.

Differential revision: https://reviews.llvm.org/D66259

llvm-svn: 368944
</content>
</entry>
<entry>
<title>[clang-tidy]: Google: new check 'google-upgrade-googletest-case'</title>
<updated>2019-07-29T21:38:56+00:00</updated>
<author>
<name>Eric Fiselier</name>
<email>eric@efcs.ca</email>
</author>
<published>2019-07-29T21:38:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=a2a6f853662172a04bd3e2a444dd606d32b15bba'/>
<id>urn:sha1:a2a6f853662172a04bd3e2a444dd606d32b15bba</id>
<content type='text'>
Introduce a new check to upgrade user code based on API changes in Googletest.

The check finds uses of old Googletest APIs with "case" in their name and replaces them with the new APIs named with "suite".

Patch by Alex Strelnikov (strel@google.com)
Reviewed as D62977.

llvm-svn: 367263
</content>
</entry>
<entry>
<title>Fixed google-readability-casting test to work in c++17</title>
<updated>2019-06-11T10:59:22+00:00</updated>
<author>
<name>Dmitri Gribenko</name>
<email>gribozavr@gmail.com</email>
</author>
<published>2019-06-11T10:59:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=be20daa8ebcc5af8882839a5295b9069ef473dfa'/>
<id>urn:sha1:be20daa8ebcc5af8882839a5295b9069ef473dfa</id>
<content type='text'>
Summary: Fixed google-readability-casting.cpp to get tests working in c++17

Reviewers: gribozavr, hokein

Reviewed By: gribozavr

Subscribers: cfe-commits

Tags: #clang

Differential Revision: https://reviews.llvm.org/D63128

Patch by Shaurya Gupta.

llvm-svn: 363047
</content>
</entry>
<entry>
<title>Revise the google-objc-global-variable-declaration check to match the style guide.</title>
<updated>2019-05-31T23:41:15+00:00</updated>
<author>
<name>Stephane Moore</name>
<email>mog@google.com</email>
</author>
<published>2019-05-31T23:41:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=ec1982f07f5bdc60a0e982b992c7143cb879a996'/>
<id>urn:sha1:ec1982f07f5bdc60a0e982b992c7143cb879a996</id>
<content type='text'>
Summary:
Revise the google-objc-global-variable-declaration check to match the style guide.

This commit updates the check as follows:
(1) Do not emit fixes for extern global constants.
(2) Allow the second character of prefixes for constants to be numeric (the new guideline is that global constants should generally be named with a prefix that begins with a capital letter followed by one or more capital letters or numbers).

https://google.github.io/styleguide/objcguide.html#prefixes

This is an amended re-submission of https://reviews.llvm.org/rG12e3726fadb0b2a4d8aeed0a2817b5159f9d029d.

Contributed By: yaqiji

Reviewers: Wizard, benhamilton, stephanemoore

Reviewed By: benhamilton, stephanemoore

Subscribers: mgorny, cfe-commits, yaqiji

Tags: #clang

Differential Revision: https://reviews.llvm.org/D62045

llvm-svn: 362279
</content>
</entry>
<entry>
<title>Rollback "Revise the google-objc-global-variable-declaration check to match the style guide." 💥</title>
<updated>2019-05-29T02:23:32+00:00</updated>
<author>
<name>Stephane Moore</name>
<email>mog@google.com</email>
</author>
<published>2019-05-29T02:23:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=9ac757bf09a35d87eee7e0d12695e4f87bb8eaac'/>
<id>urn:sha1:9ac757bf09a35d87eee7e0d12695e4f87bb8eaac</id>
<content type='text'>
The change introduced new test failures.

Phabricator URL of original commit: https://reviews.llvm.org/rG12e3726fadb0b2a4d8aeed0a2817b5159f9d029d

llvm-svn: 361914
</content>
</entry>
<entry>
<title>Revise the google-objc-global-variable-declaration check to match the style guide.</title>
<updated>2019-05-29T01:36:23+00:00</updated>
<author>
<name>Stephane Moore</name>
<email>mog@google.com</email>
</author>
<published>2019-05-29T01:36:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=12e3726fadb0b2a4d8aeed0a2817b5159f9d029d'/>
<id>urn:sha1:12e3726fadb0b2a4d8aeed0a2817b5159f9d029d</id>
<content type='text'>
Summary:
Revise the google-objc-global-variable-declaration check to match the style guide.

This commit updates the check as follows:
(1) Do not emit fixes for extern global constants.
(2) Allow the second character of prefixes for constants to be numeric (the new guideline is that global constants should generally be named with a prefix that begins with a capital letter followed by one or more capital letters or numbers).

https://google.github.io/styleguide/objcguide.html#prefixes

Contributed by yaqiji.

Reviewers: Wizard, benhamilton, stephanemoore

Reviewed By: benhamilton, stephanemoore

Subscribers: mgorny, cfe-commits, yaqiji

Tags: #clang

Differential Revision: https://reviews.llvm.org/D62045

llvm-svn: 361907
</content>
</entry>
</feed>
