1. e9a265a Adapt to TraverseLambdaCapture interface change from D23204 by Martin Bohme · 9 years ago
  2. 1c158c1 Fixed some cases in the modularize assistant mode where header file names didn't translate to valid module names. by John Thompson · 9 years ago
  3. f868d0b Add qualifiers that are about to be necessary. NFC by Paul Robinson · 9 years ago
  4. 48c8426 Fix build problem by lower SmallSet<N> to a reasonable value by Matthias Braun · 9 years ago
  5. 2cc7fec Remove autoconf support by Chris Bieneman · 9 years ago
  6. 442f1b2 There were problems if a relative path is used for an include path, the path will be normalized to ./xxx. I don't know how to test this in a way that will work in a separated source/output environment, but it seems reasonable to assume that -I options won't be for provate directories. by John Thompson · 9 years ago
  7. b3eef01 Added coverage check for extensionless headers, and exclude hidden dot directoryies. by John Thompson · 10 years ago
  8. e557308 Backing out 254635 until I have a good workaround and test case. by John Thompson · 10 years ago
  9. e753fc9 Fixed header determination logic. Was missing extensionless headers in coverage check. by John Thompson · 10 years ago
  10. 9dc1b0f modularize: add install rule by Saleem Abdulrasool · 10 years ago
  11. 0caf6dadc Accommodate interface change in r252134. by Alexander Kornienko · 10 years ago
  12. e04a3da Revert "Apply modernize-use-default to clang-tools-extra." by David Blaikie · 10 years ago
  13. 3ca34bc Apply modernize-use-default to clang-tools-extra. by Angel Garcia Gomez · 10 years ago
  14. 45857d4 Make a bunch of static arrays const. by Craig Topper · 10 years ago
  15. fdaefe5 Prune CRLF. by NAKAMURA Takumi · 10 years ago
  16. 4018c62 Added mechanism to modularize for doing a compilation precheck by John Thompson · 10 years ago
  17. 91656d2 Fixed erroneous comments. by John Thompson · 10 years ago
  18. ddd7dea Fixed erroneous comment. by John Thompson · 10 years ago
  19. 40178c3 Revert r241330. It compiled with Visual C++ 2013 and gcc 4.9.1 (mingw) but now fails the bots. by Yaron Keren · 10 years ago
  20. 4526701 Replace some const std::string & with llvm::StringRef or std::string by Yaron Keren · 10 years ago
  21. 1f02f96 Update for LLVM API change to return by InputArgList directly (rather than by pointer) from ParseArgs by David Blaikie · 10 years ago
  22. faa9280 Update for ParseARgs ArrayRef-ification by David Blaikie · 10 years ago
  23. 96f5551 Fixed modularize to warn about missing headers referenced in a module map. by John Thompson · 10 years ago
  24. cf777e9 Fixed option comment. '=' is required. by John Thompson · 10 years ago
  25. 9d5ae21 Update to match clang r237508. by Richard Smith · 10 years ago
  26. 89ec723 Refactor MacroInfo so range for loops can be used to iterate its tokens. by Daniel Marjamaki · 10 years ago
  27. f9f62b1 Changed option processing to implicitly use -x c++ if no other -x option specified. Added implicit -w option to disable compilation warnings, in particular to avoid warning on pragma once. by John Thompson · 10 years ago
  28. fcf3f47 Fixed infinite recursion bug. by John Thompson · 10 years ago
  29. 33de856 Update to match clang r236404. by Richard Smith · 10 years ago
  30. 76e6660 Fix clang-tools-extra build after clang r235614. by Richard Smith · 10 years ago
  31. 87638f6 Use 'override/final' instead of 'virtual' for overridden methods by Alexander Kornienko · 10 years ago
  32. 4754aa8 Refactor: Simplify boolean expression in modularize by David Blaikie · 10 years ago
  33. e710371 Make helpers static. clang-tools edition. by Benjamin Kramer · 10 years ago
  34. 84ced5c Renamed function to avoid confusion about purpose. by John Thompson · 10 years ago
  35. b70ecf6 Fixed canonical path function. by John Thompson · 10 years ago
  36. b97f5c1 Revert "Adapt clang-tools-extra to clang module format changes." by Adrian Prantl · 10 years ago
  37. e95edbf Adapt clang-tools-extra to clang module format changes. by Adrian Prantl · 10 years ago
  38. a22fd38 Revert "Adapt Makefile dependencies for the clang module format change in r230089." by Adrian Prantl · 10 years ago
  39. 6897e3e Adapt Makefile dependencies for the clang module format change in r230089. by Adrian Prantl · 10 years ago
  40. d07cfbd Remove carriage returns. by Nick Lewycky · 10 years ago
  41. 8eb8d93 Added module map coverage support, extracted from module-map-checker. by John Thompson · 10 years ago
  42. 3c9fb52 Pruned some unneeded code and comments. by John Thompson · 10 years ago
  43. 9cb7964 Added support for extracting headers from module maps as a source for the header list. by John Thompson · 10 years ago
  44. b87fd7d Temporary hack to avoid false errors. Real fix comming. by John Thompson · 10 years ago
  45. eaa4c73 Updated file comment on modularize usage, as it was out-of-date. by John Thompson · 10 years ago
  46. 3dcb393 Add canonical path conversion function and use it so paths are consistent. by John Thompson · 10 years ago
  47. 9ea81b0 Fix broken logic for include in block check. by John Thompson · 10 years ago
  48. d845bae Moved header list loading to new class. This is staging for adding module map loading and checking support. by John Thompson · 10 years ago
  49. 24fbdf1 Modularize.cpp: Simplify. Vector may be aware of ranged-for. by NAKAMURA Takumi · 10 years ago
  50. c8930de Modularize.cpp: Prune CRLFs. by NAKAMURA Takumi · 10 years ago
  51. 469bbc0 Added support for multiple header list files, as a precursor for when we need to load multiple module maps. by John Thompson · 10 years ago
  52. f1828ef Fixed incorrect header inclusion tracking resulting in false error reports. by John Thompson · 10 years ago
  53. ecd3b04 Added -block-check-header-list-only option. This is a work-around for private includes that purposefully get included inside blocks. by John Thompson · 10 years ago
  54. 9724431 Centralize canonical path conversion. by John Thompson · 10 years ago
  55. 5d9862f Renamed module.map to module.modulemap (modularize). by John Thompson · 10 years ago
  56. bf87a8b Replace size call with empty call where appripriate in clang/tools/extra by Alexander Kornienko · 10 years ago
  57. d365731 Make ArgumentsAdjuster an std::function (clang-tools-extra part of D6505). by Alexander Kornienko · 11 years ago
  58. 3431881 Update for LLVM API change to make Small(Ptr)Set::insert return pair<iterator, bool> as per the C++ standard's associative container concept. by David Blaikie · 11 years ago
  59. 775862a Unique_ptrify PPCallbacks ownership. Goes with clang r217474. by Craig Topper · 11 years ago
  60. b14bd53 Update for LLVM api change by Rafael Espindola · 11 years ago
  61. 680c4c8 Recommit 213308: unique_ptr-ify ownership of ASTConsumers (reverted in r213324) by David Blaikie · 11 years ago
  62. 6e91424 Plug memory leaks. by Benjamin Kramer · 11 years ago
  63. 5bae2c8 Revert "unique_ptr-ify ownership of ASTConsumers" by David Blaikie · 11 years ago
  64. b9574ac unique_ptr-ify ownership of ASTConsumers by David Blaikie · 11 years ago
  65. 23b702c [CMake] Update libdeps. by NAKAMURA Takumi · 11 years ago
  66. 43f0aa6 Update for llvm api change. by Rafael Espindola · 11 years ago
  67. 92fc741 Unbreak the build after r211244. by David Blaikie · 11 years ago
  68. c7f0d23 Prefix error_code with std. by Rafael Espindola · 11 years ago
  69. 002840c Quick build fix. by Rafael Espindola · 11 years ago
  70. f61be9c [C++11] Use 'nullptr'. by Craig Topper · 11 years ago
  71. f88da97 Remove inclusions of LLVM's private config.h by Alp Toker · 11 years ago
  72. 228166a Use error_code() instead of error_code::succes() by Rafael Espindola · 11 years ago
  73. 281f9d0 Update for Clang API change and move ClangTidyDiagnosticRenderer into an anonymous namespace while there. by Benjamin Kramer · 11 years ago
  74. 6a2dc5c [C++11] Replace OwningPtr with std::unique_ptr. by Ahmed Charles · 11 years ago
  75. 26af262 Update for llvm api change. by Rafael Espindola · 11 years ago
  76. dc59a36 Update for llvm api change. by Rafael Espindola · 11 years ago
  77. 58983f1 Fix typo by Alp Toker · 11 years ago
  78. f7e45c0 Fix the top header that corresponds to this source file. Thanks for by Chandler Carruth · 11 years ago
  79. 85e6e87 Run llvm/utils/sort_includes.py over the Clang tools code. This doesn't by Chandler Carruth · 11 years ago
  80. e744d2b Fix assertion error. by John Thompson · 11 years ago
  81. 78f534d [CMake] clang-tools-extra: Update dependencies. by NAKAMURA Takumi · 11 years ago
  82. ff9225f [CMake] clang-tools-extra may not depend on LLVM CodeGen. by NAKAMURA Takumi · 11 years ago
  83. 87f9fef Changed ConditionValue argument to PPCallbacks If and Elif callbacks to be a 3-state enum. by John Thompson · 11 years ago
  84. abe79d9 Improve comment, as requested by Alp Toker. by John Thompson · 12 years ago
  85. 9a5134e Fix a variety of user-visible and comment typos by Alp Toker · 12 years ago
  86. bf5391d clang-tools-extra/modularize: Compare Paths to Prefix as natively-canonicalized form. by NAKAMURA Takumi · 12 years ago
  87. 0f3b4aa ModuleAssistant: Fix warning, don't return bool as a pointer. by Will Dietz · 12 years ago
  88. 5ab4f11 Added module map generation option. by John Thompson · 12 years ago
  89. a2b66875 Added colon to make proper error message prefix. by John Thompson · 12 years ago
  90. 2a8fcee Don't use default label in fully covered switch by Alexey Samsonov · 12 years ago
  91. 7408392 Check for #include in extern and namespace blocks. by John Thompson · 12 years ago
  92. 3353a10 Modularize: Use in-place version of sys::path::native. by Benjamin Kramer · 12 years ago
  93. 7d0213c modularize - Fix of header dependencies - this time with the source. by John Thompson · 12 years ago
  94. 53a9d2d modularize - Update main comment. by John Thompson · 12 years ago
  95. f5999bd Revert svn 189837 "Added header dependencies support." by Bob Wilson · 12 years ago
  96. 7475180 Added header dependencies support. by John Thompson · 12 years ago
  97. cc2e291 Ran clang-format for a base-line. by John Thompson · 12 years ago
  98. 9e8d672 Updated the main comment with respect to problems and future directions. by John Thompson · 12 years ago
  99. 8e01c06 Fixed some issues that resulted in erroneous duplicate symbol error messages. by John Thompson · 12 years ago
  100. f656e17 Add dependencies on TransformUtils library in preparation for re-applying r188666 by Alexey Samsonov · 12 years ago