interators constructor section fixed

This commit is contained in:
Marius Bancila 2018-01-31 09:04:26 +02:00 committed by GitHub
parent c55a99c3d4
commit 21de11f208
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,7 +57,7 @@ std::array<uuid::value_type, 16> arr{{
0xb4, 0x11,
0x99, 0xed, 0x17, 0x7d, 0x3e, 0x43
}};
uuid id(arr);
uuid id(std::begin(arr), std::end(arr));
```
```
@ -67,7 +67,7 @@ uuid::value_type arr[16] = {
0x4b, 0xfd,
0xb4, 0x11,
0x99, 0xed, 0x17, 0x7d, 0x3e, 0x43 };
uuid id(arr);
uuid id(std::begin(arr), std::end(arr));
```
### Size