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

Fix singleton destruction order <master> [10533] #1748

Merged
merged 5 commits into from
Feb 11, 2021

Commits on Feb 9, 2021

  1. Refs 10533 Fix singleton destructin order

    These singletons are used on the destruction of certain classes.
    In order to avoid these singletons to be already destructed,
    these classes keep a shared_pointer to an instance to the singleton.
    This ensures that the singleton is destructed AFTER the class instance.
    
    Signed-off-by: Iker Luengo <ikerluengo@eprosima.com>
    IkerLuengo committed Feb 9, 2021
    Configuration menu
    Copy the full SHA
    8b69cbb View commit details
    Browse the repository at this point in the history
  2. Refs 10533 Uncrustify

    Signed-off-by: Iker Luengo <ikerluengo@eprosima.com>
    IkerLuengo committed Feb 9, 2021
    Configuration menu
    Copy the full SHA
    25988c8 View commit details
    Browse the repository at this point in the history
  3. Refs 10533 Resolve warnings

    Signed-off-by: Iker Luengo <ikerluengo@eprosima.com>
    IkerLuengo committed Feb 9, 2021
    Configuration menu
    Copy the full SHA
    5a7af92 View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2021

  1. Refs 10533 Avoid copy on instance construction

    Signed-off-by: Iker Luengo <ikerluengo@eprosima.com>
    IkerLuengo committed Feb 10, 2021
    Configuration menu
    Copy the full SHA
    4da5971 View commit details
    Browse the repository at this point in the history
  2. Refs 10533 use create_entities on the new test

    Signed-off-by: Iker Luengo <ikerluengo@eprosima.com>
    IkerLuengo committed Feb 10, 2021
    Configuration menu
    Copy the full SHA
    b8bd004 View commit details
    Browse the repository at this point in the history