1
0
mirror of https://github.com/kataras/iris.git synced 2026-05-14 18:13:49 +00:00

update dependencies

This commit is contained in:
Gerasimos (Makis) Maropoulos
2025-08-15 23:29:20 +03:00
parent de4f462198
commit a8a3afea22
186 changed files with 694 additions and 689 deletions

View File

@@ -64,7 +64,7 @@ func Handle(ctx *context.Context, resp any, err error) bool {
}
// checkNaN checks if any exported field in the struct is NaN and returns an error if it is.
func checkNaN(v interface{}) error {
func checkNaN(v any) error {
val := reflect.ValueOf(v)
return checkNaNRecursive(val, val.Type().Name())
}