On Fri, Feb 17, 2017 at 8:54 PM, Birunthan Mohanathas <[email protected]> wrote: > On 16 February 2017 at 13:41, Henri Sivonen <[email protected]> wrote: >> Is there some kind of tool, similar to ./mach clang-format for >> whitespace, that changes identifies from C++ standard library style to >> Gecko style? > > Yes, clang-tidy has the readability-identifier-naming check: > http://clang.llvm.org/extra/clang-tidy/checks/readability-identifier-naming.html
Thank you! This does more than half of the work. (When it renames method arguments, it doesn't rename the uses of the arguments in the method body, but that seems to be the only thing in my case that needs manual post-processing.) -- Henri Sivonen [email protected] https://hsivonen.fi/ _______________________________________________ dev-platform mailing list [email protected] https://lists.mozilla.org/listinfo/dev-platform

