aboutsummaryrefslogtreecommitdiff
path: root/obj_tag.go
diff options
context:
space:
mode:
Diffstat (limited to 'obj_tag.go')
-rw-r--r--obj_tag.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/obj_tag.go b/obj_tag.go
index 31018c2c..8c5981e9 100644
--- a/obj_tag.go
+++ b/obj_tag.go
@@ -17,7 +17,8 @@ type Tag struct {
}
// ObjectType allows Tag to satisfy the Object interface.
-func (*Tag) ObjectType() ObjectType {
+func (tag *Tag) ObjectType() ObjectType {
+ _ = tag
return ObjTag
}