forked from OSchip/llvm-project
8dedeb0230
Summary: Add a check that replaces empty bodies of special member functions with '= default;'. For now, it is only implemented for the default constructor and the destructor, which are the easier cases. The copy-constructor and the copy-assignment operator cases will be implemented later. I applied this check to the llvm code base and found 627 warnings (385 in llvm, 9 in compiler-rt, 220 in clang and 13 in clang-tools-extra). Applying the fixes didn't break any build or test, it only caused a -Wpedantic warning in lib/Target/Mips/MipsOptionRecord.h:33 becaused it replaced virtual ~MipsOptionRecord(){}; to virtual ~MipsOptionRecord()= default;; Reviewers: klimek Subscribers: george.burgess.iv, Eugene.Zelenko, alexfh, cfe-commits Differential Revision: http://reviews.llvm.org/D13871 llvm-svn: 250897 |
||
---|---|---|
.. | ||
clang-tidy | ||
AddOverrideTransform.rst | ||
Doxyfile | ||
LoopConvertTransform.rst | ||
Makefile | ||
MigratorUsage.rst | ||
ModernizerUsage.rst | ||
ModularizeUsage.rst | ||
PassByValueTransform.rst | ||
README.txt | ||
ReplaceAutoPtrTransform.rst | ||
UseAutoTransform.rst | ||
UseNullptrTransform.rst | ||
clang-modernize.rst | ||
clang-tidy.rst | ||
conf.py | ||
cpp11-migrate.rst | ||
index.rst | ||
make.bat | ||
modularize.rst | ||
pp-trace.rst |
README.txt
------------------------------------------------------------- Documentation for the tools of clang-tools-extra repo project ------------------------------------------------------------- Sphinx and doxygen documentation is generated by executing make. Sphinx html files can be generated separately using make html. Doxygen html files can also be generated using make doxygen. The generated documentation will be placed in _build/html.