Description:
This transformation allows to modify the naming convention of all identifiers from CamelCase to standard_lowercase, as used by the standard library or Boost.
For example, the following code:
namespace MyTools { class MyClass { public: void myFunction(); }; }
will be transformed into this:
namespace my_tools { class my_class { public: void my_function(); }; }
Note: The transformation is performed in place, which means that the source files are modified.
Note: This transformation does not modify comments and string literals.