- Mar 15, 2018
-
-
Marco Clemencic authored
-
Marco Clemencic authored
-
-
Marco Clemencic authored
-
Marco Clemencic authored
-
Marco Clemencic authored
-
Marco Clemencic authored
-
-
Marco Clemencic authored
-
- Mar 13, 2018
-
-
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().
-
- Mar 08, 2018
-
-
Hadrien Benjamin Grasland authored
-
- Feb 28, 2018
-
-
Marco Clemencic authored
-
Marco Clemencic authored
-
- Feb 26, 2018
-
-
cherry-pick of !599
-
- Feb 22, 2018
-
-
Marco Clemencic authored
-
-
- Feb 20, 2018
-
-
Frank Winklmeier authored
gaudi_add_compile_test can be used to add tests that check for the existence of (expected) compilation failures. Use this to implement a unit test to check for StatusCode comilation failures.
-
- Feb 19, 2018
-
-
Marco Clemencic authored
Closes #14
-
- Feb 18, 2018
-
-
Illya Shapoval authored
-
- Feb 15, 2018
-
-
Charles Leggett authored
See merge request !546
-
- Feb 14, 2018
-
-
Marco Clemencic authored
add support for categories (domains) to `StatusCode by using typed enums and ideas from `std::error_code`.
-
Marco Clemencic authored
-
Marco Clemencic authored
-
Marco Clemencic authored
-
Charles Leggett authored
See merge request !581
-
Charles Leggett authored
See merge request !579
-
Charles Leggett authored
See merge request !578
-
- Feb 13, 2018
-
-
Charles Leggett authored
See merge request !572
-
Charles Leggett authored
See merge request !509
-
- Feb 10, 2018
-
-
Marco Clemencic authored
This reverts merge request !524
-
Gerhard Raven authored
This reverts merge request !524
-
Marco Clemencic authored
-
- Feb 09, 2018
-
-
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
-
-
Charles Leggett authored
See merge request !526
-
Illya Shapoval authored
-
Marco Clemencic authored
The syntax of ``` ToolHandle<IMyTool> m_tool; bool m_useToolFlag; ... ATH_CHECK( m_tool.retrieve( DisableTool{ !m_useToolFlag } )); ``` Add another TaggedBool to make it a little clearer what are people's thoughts on `DisableTool / EnableTool` vs. `DisableToolIf / EnableToolIf`: ``` ATH_CHECK( m_tool.retrieve( EnableTool{ m_useToolFlag } )); ```
-
-
Marco Clemencic authored
-
-