mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-11-04 04:32:26 -06:00 
			
		
		
		
	Bumps [github.com/gin-contrib/gzip](https://github.com/gin-contrib/gzip) from 1.0.1 to 1.1.0. - [Release notes](https://github.com/gin-contrib/gzip/releases) - [Changelog](https://github.com/gin-contrib/gzip/blob/master/.goreleaser.yaml) - [Commits](https://github.com/gin-contrib/gzip/compare/v1.0.1...v1.1.0) --- updated-dependencies: - dependency-name: github.com/gin-contrib/gzip dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
		
			
				
	
	
		
			34 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2024 The Go Authors. All rights reserved.
 | 
						|
// Use of this source code is governed by a BSD-style
 | 
						|
// license that can be found in the LICENSE file.
 | 
						|
 | 
						|
//go:build !race
 | 
						|
 | 
						|
package impl
 | 
						|
 | 
						|
// There is no additional data as we're not running under race detector.
 | 
						|
type RaceDetectHookData struct{}
 | 
						|
 | 
						|
// Empty stubs for when not using the race detector. Calls to these from index.go should be optimized away.
 | 
						|
func (presence) raceDetectHookPresent(num uint32)                       {}
 | 
						|
func (presence) raceDetectHookSetPresent(num uint32, size presenceSize) {}
 | 
						|
func (presence) raceDetectHookClearPresent(num uint32)                  {}
 | 
						|
func (presence) raceDetectHookAllocAndCopy(src presence)                {}
 | 
						|
 | 
						|
// raceDetectHookPresent is called by the generated file interface
 | 
						|
// (*proto.internalFuncs) Present to optionally read an unprotected
 | 
						|
// shadow bitmap when race detection is enabled. In regular code it is
 | 
						|
// a noop.
 | 
						|
func raceDetectHookPresent(field *uint32, num uint32) {}
 | 
						|
 | 
						|
// raceDetectHookSetPresent is called by the generated file interface
 | 
						|
// (*proto.internalFuncs) SetPresent to optionally write an unprotected
 | 
						|
// shadow bitmap when race detection is enabled. In regular code it is
 | 
						|
// a noop.
 | 
						|
func raceDetectHookSetPresent(field *uint32, num uint32, size presenceSize) {}
 | 
						|
 | 
						|
// raceDetectHookClearPresent is called by the generated file interface
 | 
						|
// (*proto.internalFuncs) ClearPresent to optionally write an unprotected
 | 
						|
// shadow bitmap when race detection is enabled. In regular code it is
 | 
						|
// a noop.
 | 
						|
func raceDetectHookClearPresent(field *uint32, num uint32) {}
 |