learnlytics-go/templ/lsp/protocol/util.go
2025-03-20 12:35:13 +01:00

10 lines
223 B
Go

// SPDX-FileCopyrightText: 2019 The Go Language Server Authors
// SPDX-License-Identifier: BSD-3-Clause
package protocol
// NewVersion returns the int32 pointer converted i.
func NewVersion(i int32) *int32 {
return &i
}