diff --git a/src/link.cpp b/src/link.cpp index 2a152e1d1e91c398cc60550665969a959c24c306..78e549c80bbf5da49af59010e7e9ca28d88de22b 100644 --- a/src/link.cpp +++ b/src/link.cpp @@ -1426,18 +1426,6 @@ static void get_darwin_platform(LinkJob *lj, DarwinPlatform *platform) { } } -static bool darwin_version_lt(DarwinPlatform *platform, int major, int minor) { - if (platform->major < major) { - return true; - } else if (platform->major > major) { - return false; - } - if (platform->minor < minor) { - return true; - } - return false; -} - static void construct_linker_job_macho(LinkJob *lj) { CodeGen *g = lj->codegen;