Fix eq and ne tpl function issue
authorTatsushi Demachi <tdemachi@gmail.com>
Mon, 9 Mar 2015 13:55:04 +0000 (22:55 +0900)
committerbep <bjorn.erik.pedersen@gmail.com>
Mon, 9 Mar 2015 14:28:31 +0000 (15:28 +0100)
commit44cdb37b038e7c79893dfe431e9d88d1b07148c4
tree039d29952247539ca127e793c800af4eed660a64
parent91d16fbba09d3552af7b5327797dd2b5d9861b35
Fix eq and ne tpl function issue

`eq` and `ne` template functions don't work as expected when those are
used with a raw number and a calculated value by add, sub etc. It's
caused by both numbers type differences. For example, `eq 5 (add 2 3)`
returns `false` because raw 5 is `int` while `add 2 3` returns 5 with
`int64`

This normalizes `int`, `uint` and `float` type values to `int64`,
`uint64` and `float64` before comparing them. Other type of value is
passed to comparing function without any changes.

Fix #961
tpl/template.go