forked from OSchip/llvm-project
clang-modernize: Fix clang-apply-replacements invocation bug
The command-line for clang-apply-replacements was being mangled due to an uninitialized variable. gasp! Now fixed. llvm-svn: 192033
This commit is contained in:
parent
c0f00b79f7
commit
9e5b0da062
|
@ -22,6 +22,8 @@
|
|||
class ReplacementHandling {
|
||||
public:
|
||||
|
||||
ReplacementHandling() : DoFormat(false) {}
|
||||
|
||||
/// \brief Finds the path to the executable 'clang-apply-replacements'.
|
||||
///
|
||||
/// The executable is searched for on the PATH. If not found, looks in the
|
||||
|
|
Loading…
Reference in New Issue