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

[8_0_X] Support vector<string> data products in friendly class name #36580

Merged
merged 3 commits into from Jan 14, 2022

Commits on Dec 22, 2021

  1. Allow shared_ptr and unique_ptr in top level data products

    Added special cases to the friendly name generator to handle
    std::shared_ptr and std::unique_ptr as items being held by
    collections which are used as data products. This avoids having
    an extra underscore be in friendly class name which is not allowed.
    Dr15Jones authored and makortel committed Dec 22, 2021
    Configuration menu
    Copy the full SHA
    2dd9e07 View commit details
    Browse the repository at this point in the history
  2. FriendlyName: add "String" options for C++11 ABI

    This is needed for C++11 (and above) ABI, which is available starting GCC 5.
    
    Signed-off-by: David Abdurachmanov <davidlt@cern.ch>
    David Abdurachmanov authored and makortel committed Dec 22, 2021
    Configuration menu
    Copy the full SHA
    334b638 View commit details
    Browse the repository at this point in the history

Commits on Dec 23, 2021

  1. The new gcc ABI for C++11 uses different namespace

    The gcc ABI for C++11 internally uses the namespace std::__cxx11
    for the standard library containers. The friendly class name
    generator now knows about that naming in order to keep the
    branch names the same as before the ABI change.
    Dr15Jones authored and makortel committed Dec 23, 2021
    Configuration menu
    Copy the full SHA
    583a2b2 View commit details
    Browse the repository at this point in the history