zeroc-ice / ice

All-in-one solution for creating networked applications with RPC, pub/sub, server deployment, and more.
https://zeroc.com
GNU General Public License v2.0
2k stars 592 forks source link

Remove Last Remaining References to the `cpp11` Mapping #2294

Open InsertCreativityHere opened 2 weeks ago

InsertCreativityHere commented 2 weeks ago

There are still 3 places where we reference it, which we should remove:

  1. in cpp/test/IceUtil/stacktrace/test.py: We set this option: TestSuite(__name__, options={"cpp11": [False]})

  2. in cpp/test/Ice/scope/AllTests.cpp We have 4 of these comments in the test: "// C++ 11 Future-Based Async Function" I guess it's referring to the language version, and not the mapping, so I left it alone.

  3. in Make.project.rules we have a comment which gives this outdated example:

    # Check for platform and configuration specific variable. For example, if variable
    # is `objdir', for the configuration `cpp11-static' and the `osx' platform, the
    # resulting value will be: $(osx_objdir) $(cpp11_objdir) $(static_objdir).

    (See #2290)