Kaydet (Commit) 391c6aee authored tarafından Noel Grandin's avatar Noel Grandin

ignore constructors for method-can-be-private analysis

doesn't work right now

Change-Id: I43693104f4af204a6bd0c22b0f7ef53c1a14bb6e
üst 616bc7b8
......@@ -333,6 +333,9 @@ for d in publicDefinitionSet:
method = d[0] + " " + d[1]
if d in calledFromOutsideSet:
continue
# TODO ignore constructors for now, my called-from-outside analysis doesn't work here
if d[0] == "":
continue
if isOtherConstness(d, calledFromOutsideSet):
continue
# ignore external code
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment