[PATCH] D28334: [clang-tidy] Add -extra-arg and -extra-arg-before to run-clang-tidy.py

Alexander Kornienko via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Sat Jan 14 03:02:19 PST 2017


alexfh added inline comments.


================
Comment at: clang-tidy/tool/run-clang-tidy.py:80
+  for arg in extra_arg:
+      start.append('-extra-arg=%s' % arg[0])
+  for arg in extra_arg_before:
----------------
Why arg[0] and not just arg?


https://reviews.llvm.org/D28334





More information about the cfe-commits mailing list