質問編集履歴

2

is_hogeの型を修正しきれていなかったのを修正

2018/11/08 03:08

投稿

takey
takey

スコア312

test CHANGED
File without changes
test CHANGED
@@ -62,7 +62,7 @@
62
62
 
63
63
  ```C
64
64
 
65
- static is_hoge[NUM] = {FALSE, FALSE};
65
+ static BOOL is_hoge[NUM] = {FALSE, FALSE};
66
66
 
67
67
  ```
68
68
 
@@ -74,7 +74,7 @@
74
74
 
75
75
  ```C
76
76
 
77
- static is_hoge[NUM] = {};
77
+ static BOOL is_hoge[NUM] = {};
78
78
 
79
79
  ```
80
80
 

1

is_hogeの型を指定していなかったので修正

2018/11/08 03:08

投稿

takey
takey

スコア312

test CHANGED
File without changes
test CHANGED
@@ -18,7 +18,7 @@
18
18
 
19
19
  void hoge(int num){
20
20
 
21
- static is_hoge[NUM] = {FALSE, FALSE};
21
+ static BOOL is_hoge[NUM] = {FALSE, FALSE};
22
22
 
23
23
 
24
24