Skip to content
Snippets Groups Projects
Commit 16404b0e authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

Merge branch 'main-cleanup-CxxUtils' into 'main'

main-cppcheck_suppress-CxxUtils

See merge request atlas/athena!76915
parents 7519d8bf 54e52f2d
No related branches found
No related tags found
9 merge requests!78241Draft: FPGATrackSim: GenScan code refactor,!78236Draft: Switching Streams https://its.cern.ch/jira/browse/ATR-27417,!78056AFP monitoring: new synchronization and cleaning,!78041AFP monitoring: new synchronization and cleaning,!77990Updating TRT chip masks for L1TRT trigger simulation - ATR-28372,!77731Draft: Updates to ZDC reconstruction,!77728Draft: updates to ZDC reconstruction,!77522Draft: sTGC Pad Trigger Emulator,!76915main-cppcheck_suppress-CxxUtils
......@@ -20,6 +20,7 @@ namespace CxxUtils {
*/
template <class T>
inline
//cppcheck-suppress uninitMemberVar
CachedValue<T>::CachedValue()
: m_val (),
m_cacheValid (INVALID)
......@@ -32,6 +33,7 @@ CachedValue<T>::CachedValue()
*/
template <class T>
inline
//cppcheck-suppress uninitMemberVar
CachedValue<T>::CachedValue (const T& val)
: m_val (val),
m_cacheValid (VALID)
......@@ -44,6 +46,7 @@ CachedValue<T>::CachedValue (const T& val)
*/
template <class T>
inline
//cppcheck-suppress uninitMemberVar
CachedValue<T>::CachedValue (T&& val) noexcept
: m_val (std::move (val)),
m_cacheValid (VALID)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment