Modernize your C++ code

C++11 includes several additions to the core language and extends the C++ standard library. Some of these new features are very easy to use and bring a big added value to your C++ projects.

It’s interesting to detect automatically places where we can use some C++11 new features. For such needs clang-modernize is a standalone tool used to automatically convert C++ code, written against old standards, to use features of the newest C++ standard where appropriate. 

Developers who utilze Clang could easilly use the clang-modernize tool. However for Visual C++ developers and other compilers users it’s not an easy task to benefit from this interesting tool result.

To let all C++ developers benefit from this amazing tool, CppDepend is  integrating it now in its latest windows version 5.1 in order to detect the places where the following features could be used:

  • Override: Detect places where you can add the override specifier to member functions that override a virtual function in a base class and that don’t already have the specifier
  • Loop Convert: Detect loops like for(…; …; …) to replace them with the new range-based loops in C++11 and give you the new range loop expression to use.
  • Pass-By-Value: Detect const-ref parameters that would benefit from using the pass-by-value idiom.
  • auto_ptr: Detect the uses of the deprecated std::auto_ptr to replace by std::unique_ptr.
  • auto specifier: Detect places where to use the auto type specifier in variable declarations.
  • nullptr: Detect null literals to be replaced by nullptr where applicable.

How do I use this feature? 

This feature is not enabled by default, and you can enable it from “Project properties”=> Analysis=>Modernize C++ Code.However, it will take more time to analyse your code base and it’s recommended to disable it as soon as you no longer need its results. 

modernizeAfter the analysis you can find the CQLinq queries concerning the C++11 advices inside the “Modernize C++ Code” group:

modernize2And for each query, you can get the places where you can modernize your code. You can double click each result to go in your source code where the improvements could be applied.

What’s interesting in the advices given by the Clang modernizer tool is the fact that they concern some of the most interesting C++11 features which are very easy to introduce in your source code and bring a big added value to your C++ projects.

 

Leave a Reply

Your email address will not be published. Required fields are marked *