Some existing codebase under Unix was using builder.Instanciate() that returns 3 values.
My IDE was complaining because it was expecting only 2 values returned.
It turns out: I should simply not try to compile it under Windows.
Signatures both for the default and the _unix should be the same to avoid such error.
Some existing codebase under Unix was using builder.Instanciate() that returns 3 values. My IDE was complaining because it was expecting only 2 values returned.
It turns out: I should simply not try to compile it under Windows. Signatures both for the
default
and the_unix
should be the same to avoid such error.