2016-07-18 00:03:23 +02:00
|
|
|
// Build for mount for unsupported platforms to stop go complaining
|
|
|
|
// about "no buildable Go source files "
|
|
|
|
|
2020-01-08 09:02:01 +01:00
|
|
|
// Invert the build constraint: linux,go1.11 darwin,go1.11 freebsd,go1.11
|
|
|
|
//
|
|
|
|
// !((linux&&go1.11) || (darwin&&go1.11) || (freebsd&&go1.11))
|
|
|
|
// == !(linux&&go1.11) && !(darwin&&go1.11) && !(freebsd&&go1.11))
|
|
|
|
// == (!linux || !go1.11) && (!darwin || go1.11) && (!freebsd || !go1.11))
|
|
|
|
|
|
|
|
// +build !linux !go1.11
|
|
|
|
// +build !darwin !go1.11
|
|
|
|
// +build !freebsd !go1.11
|
2016-07-18 00:03:23 +02:00
|
|
|
|
|
|
|
package mount
|