Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Insert function doesn't work well #18

Open
bnovik0v opened this issue Aug 17, 2021 · 1 comment
Open

Insert function doesn't work well #18

bnovik0v opened this issue Aug 17, 2021 · 1 comment

Comments

@bnovik0v
Copy link

for (InputIterator it = first; first != last; ++it) {

I've found you got an error when adding items using iterators

it should be:

for (InputIterator it = first; it != last; ++it) { 
@bwedding
Copy link

I came here to say the same thing :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants