From 8fd9e568046d57cc780e64a67b84fd6bce97a457 Mon Sep 17 00:00:00 2001 From: Blake Mizerany Date: Sat, 27 Apr 2024 14:06:11 -0700 Subject: [PATCH] types/structs: drop unused structs package (#3981) --- types/structs/structs.go | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 types/structs/structs.go diff --git a/types/structs/structs.go b/types/structs/structs.go deleted file mode 100644 index 52929ebf..00000000 --- a/types/structs/structs.go +++ /dev/null @@ -1,15 +0,0 @@ -// Copyright (c) Tailscale Inc & AUTHORS -// SPDX-License-Identifier: BSD-3-Clause - -// Package structs contains the Incomparable type. -package structs - -// Incomparable is a zero-width incomparable type. If added as the -// first field in a struct, it marks that struct as not comparable -// (can't do == or be a map key) and usually doesn't add any width to -// the struct (unless the struct has only small fields). -// -// By making a struct incomparable, you can prevent misuse (prevent -// people from using ==), but also you can shrink generated binaries, -// as the compiler can omit equality funcs from the binary. -type Incomparable [0]func()