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

Removed use of =default for vector types #543

Closed
wants to merge 4 commits into from
Closed

Removed use of =default for vector types #543

wants to merge 4 commits into from

Commits on Aug 17, 2016

  1. Removed use of =default for vector types

    Defaulting the copy constructor and copy assignment operators causes compiler errors when the type T is not trivially copyable. In that case, explicitly defined copy ctor and assignment are required. This PR removes the #ifdefs around the existing operators, so they're always used.
    patrikhuber committed Aug 17, 2016
    Configuration menu
    Copy the full SHA
    56917bf View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2016

  1. Configuration menu
    Copy the full SHA
    626aa4a View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2016

  1. Configuration menu
    Copy the full SHA
    b7c2615 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    65cd3df View commit details
    Browse the repository at this point in the history