Skip to content

Commit 83dae09

Browse files
committed
cs fix
1 parent 430364a commit 83dae09

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/SPC/util/SPCTarget.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
namespace SPC\util;
66

77
use SPC\builder\linux\SystemUtil;
8-
use SPC\exception\WrongUsageException;
98
use SPC\toolchain\ClangNativeToolchain;
109
use SPC\toolchain\GccNativeToolchain;
1110
use SPC\toolchain\MuslToolchain;
@@ -17,7 +16,7 @@
1716
*/
1817
class SPCTarget
1918
{
20-
const array LIBC_LIST = ['musl', 'glibc'];
19+
public const array LIBC_LIST = ['musl', 'glibc'];
2120

2221
/**
2322
* Returns whether we link the C runtime in statically.

tests/SPC/util/SPCTargetTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
namespace SPC\Tests\util;
66

7-
use SPC\exception\WrongUsageException;
87
use SPC\util\SPCTarget;
98

109
/**

0 commit comments

Comments
 (0)