aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSergio Martins <smartins@kde.org>2019-09-21 15:25:49 +0100
committerSergio Martins <smartins@kde.org>2019-09-21 15:25:49 +0100
commit3330874e7f543d0b0edf18af09a71dff2a56140b (patch)
tree2c497365e7ce9e532d0cba93db1fdfc16abcc50e /src
parenta0c8ddeab681e41aa83178f636fa24baf504f357 (diff)
Remove unused private member
Diffstat (limited to 'src')
-rw-r--r--src/FixItExporter.cpp1
-rw-r--r--src/FixItExporter.h1
2 files changed, 0 insertions, 2 deletions
diff --git a/src/FixItExporter.cpp b/src/FixItExporter.cpp
index 10180e04..7073b8c2 100644
--- a/src/FixItExporter.cpp
+++ b/src/FixItExporter.cpp
@@ -44,7 +44,6 @@ FixItExporter::FixItExporter(DiagnosticsEngine &DiagEngine, SourceManager &Sourc
, SourceMgr(SourceMgr)
, LangOpts(LangOpts)
, exportFixes(exportFixes)
- , m_isClazyStandalone(isClazyStandalone)
{
if (!isClazyStandalone) {
// When using clazy as plugin each translation unit fixes goes to a separate YAML file
diff --git a/src/FixItExporter.h b/src/FixItExporter.h
index a3d1f555..408ea1fa 100644
--- a/src/FixItExporter.h
+++ b/src/FixItExporter.h
@@ -64,7 +64,6 @@ private:
bool m_recordNotes = false;
clang::tooling::Diagnostic ConvertDiagnostic(const clang::Diagnostic &Info);
clang::tooling::Replacement ConvertFixIt(const clang::FixItHint &Hint);
- const bool m_isClazyStandalone;
};
#endif // CLAZY_FIX_IT_EXPORTER_H