cznic / lldb

github.com/cznic/lldb has moved to modernc.org/lldb
https://godoc.org/modernc.org/lldb
BSD 3-Clause "New" or "Revised" License
33 stars 1 forks source link

Fixed unchecked errors (gometalinter:errcheck) #4

Closed ghost closed 8 years ago

ghost commented 8 years ago

Add err check boilerplates. Unimportant ones, such as file.Close() during test, are left unchecked since it's unimportant for application logic.

Checked with gometalinter --disable-all --enable=errcheck "./..."

cznic commented 8 years ago

Tested, merging. Thank you!