vendor updates

This commit is contained in:
Khaled Henidak(Kal)
2019-06-28 20:46:52 +00:00
parent 18bc9a9ac1
commit 2b77667718
41 changed files with 268 additions and 58 deletions

View File

@@ -56,7 +56,7 @@ func Int64Ptr(i int64) *int64 {
return &i
}
// Int32PtrDerefOr dereference the int32 ptr and returns it i not nil,
// Int32PtrDerefOr dereference the int32 ptr and returns it if not nil,
// else returns def.
func Int32PtrDerefOr(ptr *int32, def int32) int32 {
if ptr != nil {