Commit 23264690 authored by Igor Chorążewicz's avatar Igor Chorążewicz
Browse files

contigous_iterator: make operator[] take signed integral instead

of unsigned.

The reason is that Windows cannot decide for a call like this:

`it[0] = 10`

whether to use:
* operator[](unsigned) -- one conversion from signed to unsigned
* operator T*() and then build in operator[](signed) -- one conversion
parent dedb2048
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment