回答編集履歴
2
すみません
test
CHANGED
@@ -1,15 +1 @@
|
|
1
|
-
```C++
|
2
|
-
|
3
|
-
int ret = (header[start + 3] << 24) | (header[start + 2] << 16) | (header[start + 1] << 8) | (header[start + 0]);
|
4
|
-
|
5
|
-
```
|
6
|
-
|
7
|
-
|
1
|
+
ちょっと頭がこんがらがってきたので一旦なかったことに。大変失礼しました。
|
8
|
-
|
9
|
-
```C++
|
10
|
-
|
11
|
-
int ret = (header[start + 3] << 4096 ) | (header[start + 2] << 64) | (header[start + 1] << 8) | (header[start + 0]);
|
12
|
-
|
13
|
-
```
|
14
|
-
|
15
|
-
でしたね。これは失礼。
|
1
間違いを修正
test
CHANGED
@@ -4,4 +4,12 @@
|
|
4
4
|
|
5
5
|
```
|
6
6
|
|
7
|
-
`(header[start + 3] << 32)` では?
|
7
|
+
~~`(header[start + 3] << 32)` では?~~
|
8
|
+
|
9
|
+
```C++
|
10
|
+
|
11
|
+
int ret = (header[start + 3] << 4096 ) | (header[start + 2] << 64) | (header[start + 1] << 8) | (header[start + 0]);
|
12
|
+
|
13
|
+
```
|
14
|
+
|
15
|
+
でしたね。これは失礼。
|