Skip to content

Commit 37a8588

Browse files
committed
fix accidental shadowing of a variable
1 parent 1bd8795 commit 37a8588

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/cpp-json/parser.tcc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ void surrogate_pair_to_utf8(uint16_t w1, uint16_t w2, Out &out) {
6767
// Name: parser
6868
//------------------------------------------------------------------------------
6969
template <class In>
70-
parser<In>::parser(In first, In end_) : begin_(first), cur_(first), end_(end_) {
70+
parser<In>::parser(In first, In last) : begin_(first), cur_(first), end_(last) {
7171
}
7272

7373
//------------------------------------------------------------------------------

0 commit comments

Comments
 (0)