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

DM-15151: Set symbol visibility to hidden in pybind11 wrappers #39

Merged
merged 4 commits into from
Sep 12, 2018

Commits on Sep 11, 2018

  1. Wrap more of std::type_info

    it help debug issues in Python
    r-owen committed Sep 11, 2018
    Configuration menu
    Copy the full SHA
    7958968 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    422512e View commit details
    Browse the repository at this point in the history
  3. Add PropertySet::typeOfT<T>

    r-owen committed Sep 11, 2018
    Configuration menu
    Copy the full SHA
    02c345e View commit details
    Browse the repository at this point in the history
  4. Improve _propertyContainerGet for property cont.

    The way _propertyContainerGet got a PropertySet or PropertyList
    was by first trying to return as a PropertyList, then checking
    the type and returning as a PropertySet if it matched. This was
    inefficient because the type of a PropertyList is the same as a
    PropertySet, so do that check first. Also, use isPropertySetPtr
    for the test to make the code look a bit cleaner.
    r-owen committed Sep 11, 2018
    Configuration menu
    Copy the full SHA
    9a3d969 View commit details
    Browse the repository at this point in the history