bad char instead of minus

This commit is contained in:
Thibault Kruse 2015-09-28 23:57:30 +02:00
parent 33f832e090
commit 5a449f4bd8

View File

@ -10712,7 +10712,7 @@ Pointers should only refer to single objects, and pointer arithmetic is fragile
a[4] = 1; // OK
a[count 1] = 2; // OK
a[count - 1] = 2; // OK
use(a.data(), 3); // OK
}