2016-07-19 02:08:59 +08:00
|
|
|
===================================================
|
|
|
|
Extra Clang Tools 4.0.0 (In-Progress) Release Notes
|
|
|
|
===================================================
|
2016-03-27 13:06:57 +08:00
|
|
|
|
|
|
|
.. contents::
|
|
|
|
:local:
|
2016-03-30 20:05:33 +08:00
|
|
|
:depth: 3
|
2016-03-27 13:06:57 +08:00
|
|
|
|
|
|
|
Written by the `LLVM Team <http://llvm.org/>`_
|
|
|
|
|
|
|
|
.. warning::
|
|
|
|
|
2016-07-19 02:08:59 +08:00
|
|
|
These are in-progress notes for the upcoming Clang 4.0.0 release. You may
|
2016-03-27 13:06:57 +08:00
|
|
|
prefer the `Clang 3.8 Release Notes
|
|
|
|
<http://llvm.org/releases/3.8.0/tools/clang/docs/ReleaseNotes.html>`_.
|
|
|
|
|
|
|
|
Introduction
|
|
|
|
============
|
|
|
|
|
|
|
|
This document contains the release notes for the Extra Clang Tools, part of the
|
2016-07-19 02:08:59 +08:00
|
|
|
Clang release 4.0.0. Here we describe the status of the Extra Clang Tools in some
|
2016-03-27 13:06:57 +08:00
|
|
|
detail, including major improvements from the previous release and new feature
|
|
|
|
work. For the general Clang release notes, see `the Clang documentation
|
|
|
|
<http://llvm.org/releases/3.8.0/tools/clang/docs/ReleaseNotes.html>`_. All LLVM
|
|
|
|
releases may be downloaded from the `LLVM releases web
|
|
|
|
site <http://llvm.org/releases/>`_.
|
|
|
|
|
|
|
|
For more information about Clang or LLVM, including information about
|
|
|
|
the latest release, please see the `Clang Web Site <http://clang.llvm.org>`_ or
|
|
|
|
the `LLVM Web Site <http://llvm.org>`_.
|
|
|
|
|
|
|
|
Note that if you are reading this file from a Subversion checkout or the
|
|
|
|
main Clang web page, this document applies to the *next* release, not
|
|
|
|
the current one. To see the release notes for a specific release, please
|
|
|
|
see the `releases page <http://llvm.org/releases/>`_.
|
|
|
|
|
2016-07-19 02:08:59 +08:00
|
|
|
What's New in Extra Clang Tools 4.0.0?
|
|
|
|
======================================
|
2016-03-27 13:06:57 +08:00
|
|
|
|
|
|
|
Some of the major new features and improvements to Extra Clang Tools are listed
|
|
|
|
here. Generic improvements to Extra Clang Tools as a whole or to its underlying
|
|
|
|
infrastructure are described first, followed by tool-specific sections.
|
|
|
|
|
|
|
|
Major New Features
|
|
|
|
------------------
|
|
|
|
|
2016-07-19 02:08:59 +08:00
|
|
|
...
|
2016-03-27 13:06:57 +08:00
|
|
|
|
2016-03-30 20:05:33 +08:00
|
|
|
Improvements to clang-query
|
|
|
|
---------------------------
|
2016-03-27 13:06:57 +08:00
|
|
|
|
|
|
|
The improvements are...
|
|
|
|
|
2016-03-30 20:05:33 +08:00
|
|
|
Improvements to clang-rename
|
|
|
|
----------------------------
|
2016-03-27 13:06:57 +08:00
|
|
|
|
2016-08-11 06:00:49 +08:00
|
|
|
- Emacs integration was added.
|
2016-03-27 13:06:57 +08:00
|
|
|
|
2016-03-30 20:05:33 +08:00
|
|
|
Improvements to clang-tidy
|
|
|
|
--------------------------
|
2016-03-27 13:06:57 +08:00
|
|
|
|
2016-07-22 21:45:00 +08:00
|
|
|
- New `cppcoreguidelines-slicing
|
|
|
|
<http://clang.llvm.org/extra/clang-tidy/checks/cppcoreguidelines-slicing.html>`_ check
|
|
|
|
|
|
|
|
Flags slicing of member variables or vtable.
|
2016-03-27 13:06:57 +08:00
|
|
|
|
2016-07-30 16:58:54 +08:00
|
|
|
- New `cppcoreguidelines-special-member-functions
|
|
|
|
<http://clang.llvm.org/extra/clang-tidy/checks/cppcoreguidelines-special-member-functions.html>`_ check
|
|
|
|
|
|
|
|
Flags classes where some, but not all, special member functions are user-defined.
|
|
|
|
|
2016-08-04 07:06:03 +08:00
|
|
|
- New `performance-inefficient-string-concatenation
|
|
|
|
<http://clang.llvm.org/extra/clang-tidy/checks/performance-inefficient-string-concatenation.html>`_ check
|
|
|
|
|
2016-08-11 02:15:51 +08:00
|
|
|
Warns about the performance overhead arising from concatenating strings using
|
|
|
|
the ``operator+``, instead of ``operator+=``.
|
2016-08-04 07:06:03 +08:00
|
|
|
|
2016-07-22 08:34:42 +08:00
|
|
|
Improvements to include-fixer
|
|
|
|
-----------------------------
|
2016-03-30 20:05:33 +08:00
|
|
|
|
2016-07-22 08:34:42 +08:00
|
|
|
The improvements are...
|
2016-03-30 20:05:33 +08:00
|
|
|
|
|
|
|
Improvements to modularize
|
|
|
|
--------------------------
|
2016-03-27 13:06:57 +08:00
|
|
|
|
|
|
|
The improvements are...
|