go-gl / mathgl

A pure Go 3D math library.
BSD 3-Clause "New" or "Revised" License
554 stars 65 forks source link

matstack: Fix missing return on error. #41

Closed dmitshur closed 9 years ago

dmitshur commented 9 years ago

It was caught by Travis running vet:

$ go tool vet ./
mgl32/matstack/matstack.go:27: result of errors.New call not used
mgl64/matstack/matstack.go:29: result of errors.New call not used

The command "go tool vet ./" exited with 1.

This fixes Travis build.

slimsag commented 9 years ago

LGTM