Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8575299
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T19:39:44+00:00 2026-06-11T19:39:44+00:00

while reading answer to one question on MS Connect site I noticed the following

  • 0

while reading answer to one question on MS Connect site I noticed the following part of the reply:

This is one of a few breaking changes in the Standard Library that I’m
aware of (the other major ones are immutable sets, and 2D vector
construction
).

Answer can be considered legit with high probability since it is from MS employee that works on implementing STL.

So does anybody knows what exactly he refers to?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T19:39:45+00:00Added an answer on June 11, 2026 at 7:39 pm

    I emailed Stephan and asked what he was talking about. Here’s his answer (edited for formatting). It didn’t sound like he was planning to post the answer here; if he does, I’ll delete this copy.

    Everything from here down is Stephan speaking.

    I was referring to this:

    #include <vector>
    using namespace std;
    
    int main() {
        vector<vector<int>> v(11, 22);
    }
    

    It compiles with VC10 SP1 (following C++03), but not with VC11 RTM (following C++11): [snip error message dump]

    C++03 23.1.1 [lib.sequence.reqmts]/9 said:

    For every sequence defined in this clause and in clause 21:
    — the constructor
    template <class InputIterator> X(InputIterator f, InputIterator l, const Allocator& a = Allocator())
    shall have the same effect
    as:
    X(static_cast<typename X::size_type>(f), static_cast<typename X::value_type>(l), a)
    if InputIterator is an integral type.

    This transformed vector<vector<int>> v(11, 22) to vector<vector<int>> v(static_cast<size_t>(11), static_cast<vector<int>>(22)), which is valid. (static_cast is capable of invoking explicit constructors, like vector‘s size constructor.)

    C++11 23.2.3 [sequence.reqmts]/14 says:

    For every sequence container defined in this Clause and in Clause 21:
    — If the constructor
    template <class InputIterator> X(InputIterator first, InputIterator last, const allocator_type& alloc = allocator_type())
    is called with a type InputIterator that does not qualify as an input iterator, then the constructor shall not participate in overload resolution.

    This removes the (InIt, InIt) ctor from overload resolution. That leaves (size_type n, const T& value), where T is vector<int>. However, that would try to implicitly convert 22 to a temporary vector<int> (in order to bind it to const T&). The explicitness of vector‘s size constructor forbids that.

    Reading the other SO question, this is a different issue.

    STL

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

While I was reading the accepted answer of this question , I had the
While reading the answers to this question I got a doubt regarding the default
While reading this class BitmapFactory I noticed that almost all methods inside are static.
Probably an extremely simple answer to this extremely simple question: I'm reading C Primer
When reading Jon Skeet 's answer to this particular question How can I make
While reading the answers to this SO question , I learned that out-of-bounds pointer
While reading the K&R 2nd edition I noticed that the programs always began with
While reading through another question here, on creating a URL shortening service, it was
While reading cocoa tutorials i've noticed that some of the tutorials use AppDelegate and
While reading proggit today, I came upon this comment in a post about how

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.