Skip to content
Snippets Groups Projects
  1. Nov 21, 2024
  2. Nov 20, 2024
  3. Nov 19, 2024
  4. Nov 18, 2024
  5. Nov 15, 2024
  6. Nov 14, 2024
  7. Nov 13, 2024
  8. Nov 08, 2024
  9. Nov 07, 2024
  10. Nov 06, 2024
  11. 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
  12. Oct 30, 2024
  13. Oct 29, 2024
Loading