mirror of
https://github.com/Qv2ray/Qv2ray.git
synced 2025-05-20 19:00:22 +08:00
fixing a return typo
This commit is contained in:
parent
10ade1ae38
commit
7c1d9b05eb
@ -27,7 +27,7 @@ namespace Qv2ray::core::kernel::abi
|
||||
std::pair<std::optional<QvKernelABIType>, std::optional<QString>> deduceKernelABI(const QString &pathCoreExecutable)
|
||||
{
|
||||
#ifdef QV2RAY_TRUSTED_ABI
|
||||
return QvKernelABIType::ABI_TRUSTED;
|
||||
return { QvKernelABIType::ABI_TRUSTED, std::nullopt };
|
||||
#else
|
||||
QFile file(pathCoreExecutable);
|
||||
if (!file.exists())
|
||||
|
Loading…
Reference in New Issue
Block a user