We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a2cf86 commit 78809e5Copy full SHA for 78809e5
clang/utils/analyzer/CmpRuns.py
@@ -97,10 +97,17 @@ def getRawData(self):
97
98
99
class CmpOptions:
100
+ """
101
+ Fake output of option parser with manually constructed options.
102
103
+
104
def __init__(self, verboseLog=None, rootA="", rootB=""):
105
self.rootA = rootA
106
self.rootB = rootB
107
self.verboseLog = verboseLog
108
+ self.relative_path_histogram = False
109
+ self.relative_log_path_histogram = False
110
+ self.absolute_path_histogram = False
111
112
113
class AnalysisReport:
0 commit comments