Commit 6d469aa3 authored by Eric Myhre's avatar Eric Myhre

Fix missing style in int impl.

parent b25dc49d
...@@ -69,7 +69,7 @@ func (plainInt) AsLink() (ipld.Link, error) { ...@@ -69,7 +69,7 @@ func (plainInt) AsLink() (ipld.Link, error) {
return nil, ipld.ErrWrongKind{MethodName: "AsLink", AppropriateKind: ipld.ReprKindSet_JustLink, ActualKind: ipld.ReprKind_Int} return nil, ipld.ErrWrongKind{MethodName: "AsLink", AppropriateKind: ipld.ReprKindSet_JustLink, ActualKind: ipld.ReprKind_Int}
} }
func (plainInt) Style() ipld.NodeStyle { func (plainInt) Style() ipld.NodeStyle {
panic("todo") return Style__Int{}
} }
// -- NodeStyle --> // -- NodeStyle -->
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment