Dario Castañé

Results 73 comments of Dario Castañé

Closed, it can be fixed using `mergo.WithoutDereference`.

This will be considered as part of v2.

@bitcoin-coder-bob @ybbiubiubiu This is fixable using the option `mergo.WithoutDereference`: ```go package main import ( "fmt" "dario.cat/mergo" ) type Foo struct { A *string B int64 } func main() { first...

@haircommander There is no planned timeline. I work on Mergo in my spare time. I will appreciate any help on this.

Overriding pointers requires using `mergo.WithoutDereference` option.

@rfay I confirm it's just unexported variables, as @nilsgstrabo pointed. If you test it exporting `test`, it works as expected (no `false` value overrides a `true` value).

Closing as the associated PR broke Mergo and some users' projects. I'll make sure it works in v2.