forked from golang/lint
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
While a 0-length make is sometimes done when a user should have used "var s []int", the current lint check is reported to cause too many false positives on legitimate uses of 0-length make. This occurs because there is a semantic difference between "make([]int, 0)" and "var s []int". Fixes golang#234
- Loading branch information
Showing
2 changed files
with
0 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.