Skip to content

Commit

Permalink
ARROW-6966: [Go] Set a default memset for when the platform doesn't s…
Browse files Browse the repository at this point in the history
…et one

Closes apache#5714 from jsternberg/master and squashes the following commits:

a241cf6 <Jonathan A. Sternberg> ARROW-6966:  Set a default memset for when the platform doesn't set one

Authored-by: Jonathan A. Sternberg <[email protected]>
Signed-off-by: Wes McKinney <[email protected]>
  • Loading branch information
jsternberg authored and wesm committed Oct 24, 2019
1 parent 006d82a commit 89080e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/arrow/memory/memory.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
package memory

var (
memset func(b []byte, c byte)
memset func(b []byte, c byte) = memory_memset_go
)

// Set assigns the value c to every element of the slice buf.
Expand Down

0 comments on commit 89080e4

Please sign in to comment.