Skip to content
Snippets Groups Projects
  1. Apr 14, 2023
  2. Mar 17, 2023
    • Administrator's avatar
      Remove usage of sprintf · 982c4b76
      Administrator authored
      The function sprintf is marked deprecated with the latest Clang version.
      Move from sprintf to snprintf. Define and use buffer size.
      Check the return value in a function where this is important.
      dev_2023_12
      982c4b76
  3. Feb 24, 2023
  4. Feb 15, 2023
  5. Jan 11, 2023
  6. Dec 02, 2022
  7. Nov 18, 2022
    • Administrator's avatar
      Prepare for FairRoot v18.8 · e55f8bf2
      Administrator authored
      Add missing include statements and forward declarations.
      In FairRoot a serious cleanup of include statements was done which needs fixes
      in our code base.
      e55f8bf2
  8. Nov 15, 2022
  9. Nov 08, 2022
  10. Nov 02, 2022
  11. Oct 24, 2022
  12. Oct 21, 2022
  13. Oct 04, 2022
    • Omveer's avatar
      Transition from old to modern CMake · f86667e9
      Omveer authored
      unnecessary commands removed which oprated a directory level.
      like include_directories() link_directories()
      Now operating on the target directory using target_include_directories()
      target_link_libraries() commands.
      generating library target using generate_cbm_library() macro provided by us.
      f86667e9
  14. Sep 15, 2022
  15. Sep 09, 2022
  16. Aug 22, 2022
  17. Aug 19, 2022
  18. Aug 18, 2022
  19. Aug 04, 2022
  20. Aug 02, 2022
    • Administrator's avatar
      Add several compiler warnings · 66f89a15
      Administrator authored
      Use struct instead of class for forward declarations if the object is defined
      as struct.
      Remove unused data members, variables and parameters.
      Remove an explicite usage of std::move to allow copy ellision.
      Correct type in printf statements.
      Add missing virtual destructor in some class.
      Fix two issues where closing braces were at the wrong place.
      66f89a15
  21. Jul 27, 2022
  22. Jul 22, 2022
  23. Jul 18, 2022
Loading