Skip to content
Snippets Groups Projects
  1. Nov 13, 2024
  2. Nov 08, 2024
  3. Nov 07, 2024
  4. Nov 06, 2024
  5. Nov 01, 2024
    • Administrator's avatar
      Remove usage of std::binary_function · 7beb79fd
      Administrator authored
      The usage of std::binary_function is really old legacy to define the functions
      used in STL algorithms like std::sort. std::binary_function was deprecated with
      C++11 and removed from C++ with C++17. Obviously it is still supported by some
      compilers since compilation errors only occured with newer Apple clang versions.
      
      Switch to the modern implementation using lambdas in the STL algorithms.
      This also increase code readability since the code is located at the same place
      where it is used.
      
      The change was confirmed to not introduce changes in the output by comparing
      the produced TTrees before and after the commit in all produced ROOT files.
      7beb79fd
  6. Oct 30, 2024
  7. Oct 29, 2024
  8. Oct 28, 2024
  9. Oct 24, 2024
  10. Oct 14, 2024
Loading