Skip to content
Snippets Groups Projects
  1. Mar 15, 2018
  2. Mar 14, 2018
  3. Mar 13, 2018
    • scott snyder's avatar
      ThreadInitTask: MT fix. · f0c81ef3
      scott snyder authored
      ToolHandle is not thread-safe.
      In order to be able to run thread initialization in parallel,
      we need to make thread-local copies of the ToolHandleArray.
      
      Needed to allow running part of the G4 initialization in parallel
      for the ATLAS simulation.  Makes a significant difference  on many-core
      machines like KNL.
      f0c81ef3
    • Frank Winklmeier's avatar
      Remove constexpr from default constructor · 0f02d1b0
      Frank Winklmeier authored
      Coverity claims:
      
       error #2443: defaulted default constructor cannot be constexpr
                because the corresponding implicitly declared default constructor
                would not be constexpr
          constexpr StatusCode() = default;
      
      Independent of that there is little use of declaring the default
      constructor as constexpr as it is calling the non-constexpr
      default_category().
      0f02d1b0
  4. Mar 08, 2018
  5. Feb 28, 2018
  6. Feb 26, 2018
  7. Feb 22, 2018
  8. Feb 20, 2018
  9. Feb 19, 2018
  10. Feb 18, 2018
  11. Feb 15, 2018
  12. Feb 14, 2018
  13. Feb 13, 2018
  14. Feb 10, 2018
  15. Feb 09, 2018
    • Charles Leggett's avatar
      Modernize Registry usage in (Ts)DataSvc · bcfd63db
      Charles Leggett authored
      Closes #5
      
      - Remove IRegistry interface, and define it (for now) as an alias to RegistryEntry
      - Remove reference counting from RegistryEntry, replace with std::unique_ptr
      - Add move constructor/assignment to RegistryEntry
      
      See merge request !524
      bcfd63db
Loading