Skip to content
Snippets Groups Projects
Commit 9b13dc21 authored by scott snyder's avatar scott snyder Committed by scott snyder
Browse files

CxxUtils: Update for thread-safety checker const changes.

    
The thread-safety checker is getting more strict on const checks.
Fix resulting warnings.
parent bb8898fd
No related branches found
No related tags found
5 merge requests!69091Fix correlated smearing bug in JER in JetUncertainties in 22.0,!58791DataQualityConfigurations: Modify L1Calo config for web display,!51674Fixing hotSpotInHIST for Run3 HIST,!50012RecExConfig: Adjust log message levels from GetRunNumber and GetLBNumber,!48300CxxUtils: Update for thread-safety checker const changes.
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
*/
/**
......@@ -57,7 +57,7 @@ public:
bool operator== (const Callback1 &x) const;
/**/ operator bool (void) const;
void operator() (T1) const;
void operator() (T1);
private:
Callback1Rep<T1> *m_rep;
......@@ -128,7 +128,7 @@ Callback1<T1>::operator bool (void) const
template <class T1>
inline void
Callback1<T1>::operator() (T1 a) const
Callback1<T1>::operator() (T1 a)
{ m_rep->call (a); }
template <class T1, class T2>
......@@ -181,7 +181,7 @@ public:
static SharedLibrary * self (void);
static SharedLibrary * load (const std::string &name);
static void loaded (const InfoHandler &handler);
static void loaded (InfoHandler &handler);
void release (void);
void abandon (void);
......
/*
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
*/
/**
......@@ -287,7 +287,7 @@ SharedLibrary::load (const std::string &name)
/** Iterate and provide information about all currently loaded
shared libraries. */
void
SharedLibrary::loaded (const InfoHandler &handler)
SharedLibrary::loaded (InfoHandler &handler)
{
// Dynamic linker characteristics:
// AIX, Windows, SVR4 (DG/UX, DRS/NX, DYNIX/ptx, Linux, SINIX,
......
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