Skip to content
Snippets Groups Projects
Commit 0c541ffa authored by scott snyder's avatar scott snyder Committed by Marco Clemencic
Browse files

Work around issue with clang implicit instantiation in C++ mode.

GaudiHandleBase has a virtual destructor which is declared with `=default'.
However. in C++20 mode, clang will then try to instiantiate all the virtual
functions for classes derived from this whenever the declarations
for those classes are seen.  The upshot is that then using Gaudi handles
with forward-declared classes doesn't work (even if the handle is only
declared in the header but not used in any way).

It turns out that we can avoid this behavior by changing the declaration
of the base class destructor to say `{}' instead of `=default'.
(This is perhaps a clang bug, but the standard is not very clear
on exactly when virtual members of the templated class are required
to be or not to be implicitly instantiated.)

See also ATLINFR-5113.
parent a69fcfa6
No related branches found
No related tags found
1 merge request!1511Work around issue with clang implicit instantiation in C++20 mode.
/***********************************************************************************\
* (c) Copyright 1998-2020 CERN for the benefit of the LHCb and ATLAS collaborations *
* (c) Copyright 1998-2023 CERN for the benefit of the LHCb and ATLAS collaborations *
* *
* This software is distributed under the terms of the Apache version 2 licence, *
* copied verbatim in the file "LICENSE". *
......@@ -47,7 +47,10 @@ protected:
public:
/** virtual destructor so that derived class destructor is called. */
virtual ~GaudiHandleInfo() = default;
// Don't use =default here. Otherwise, in c++20 mode, clang will
// instantiate the handle virtual functions early, breaking the case
// where handles are used with a forward-declared class.
virtual ~GaudiHandleInfo() {}
//
// Public member functions
//
......
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