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

Remove register #25

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open

Remove register #25

wants to merge 6 commits into from

Commits on Nov 13, 2024

  1. Remove deprecated 'register' storage class specifier

    Officially deprecated since c++11, but became useless long ago.
    taketwo authored and Taiju Yamada committed Nov 13, 2024
    Configuration menu
    Copy the full SHA
    260830b View commit details
    Browse the repository at this point in the history
  2. Repair sparse_matrix.hpp

    Unclear why nobody has noticed for a decade that this code was just totally uncompilable. `SparseMatrix` does not have methods `Columns()` or `Rows()`, and `m_ppElements[i]` is a pointer so can't possibly have anything called with `.`.
    elfprince13 authored and Taiju Yamada committed Nov 13, 2024
    Configuration menu
    Copy the full SHA
    cbb04ab View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6add165 View commit details
    Browse the repository at this point in the history
  4. Add noexcept for boost::checked_delete<> friend

    Only for Boost >= 1.70.
    taketwo authored and Taiju Yamada committed Nov 13, 2024
    Configuration menu
    Copy the full SHA
    ac52de2 View commit details
    Browse the repository at this point in the history
  5. Fix warning: 'register' storage class specifier is deprecated and inc…

    …ompatible with C++17 [-Wdeprecated-register]
    Heiko Thiel authored and Taiju Yamada committed Nov 13, 2024
    Configuration menu
    Copy the full SHA
    4151365 View commit details
    Browse the repository at this point in the history
  6. Compatibility with clang-19

    mvieth authored and Taiju Yamada committed Nov 13, 2024
    Configuration menu
    Copy the full SHA
    a262c64 View commit details
    Browse the repository at this point in the history