forked from mirror/gin
use bit shift operation instead of division (#2776)
This commit is contained in:
parent
9d2883ef47
commit
c7a28f8532
|
@ -40,7 +40,8 @@ const (
|
|||
// BodyBytesKey indicates a default body bytes key.
|
||||
const BodyBytesKey = "_gin-gonic/gin/bodybyteskey"
|
||||
|
||||
const abortIndex int8 = math.MaxInt8 / 2
|
||||
// abortIndex represents a typical value used in abort functions.
|
||||
const abortIndex int8 = math.MaxInt8 >> 1
|
||||
|
||||
// Context is the most important part of gin. It allows us to pass variables between middleware,
|
||||
// manage the flow, validate the JSON of a request and render a JSON response for example.
|
||||
|
|
Loading…
Reference in New Issue