Netflix / vectorflow

Apache License 2.0
1.29k stars 86 forks source link

remove useless initializers #3

Closed ghost closed 7 years ago

ghost commented 7 years ago

In D, variables are initialized by default, that's a safety feature. Using the D linter called Dscanner i've detected several cases of useless variable initialization. All these cases are for integral types which are never ambiguous (i.e always set to 0 on declaration, see this).