зеркало из https://github.com/github/codeql.git
Fix missing implementations for C++ tests
This commit is contained in:
Родитель
e28be5d98f
Коммит
eab3c6dd5e
|
@ -131,6 +131,14 @@ namespace Semmle.Autobuild.Cpp.Tests
|
|||
|
||||
bool IBuildActions.IsWindows() => IsWindows;
|
||||
|
||||
public bool IsMacOs { get; set; }
|
||||
|
||||
bool IBuildActions.IsMacOs() => IsMacOs;
|
||||
|
||||
public bool IsArm { get; set; }
|
||||
|
||||
bool IBuildActions.IsArm() => IsArm;
|
||||
|
||||
string IBuildActions.PathCombine(params string[] parts)
|
||||
{
|
||||
return string.Join(IsWindows ? '\\' : '/', parts.Where(p => !string.IsNullOrWhiteSpace(p)));
|
||||
|
|
Загрузка…
Ссылка в новой задаче