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

Merge branch 'main-cppcheck-RootStorageSvc' into 'main'

main-cppcheck-RootStorageSvc

See merge request atlas/athena!67947
parents 78acca90 bf6cc16a
No related branches found
No related tags found
No related merge requests found
......@@ -10,14 +10,14 @@
#define POOL_RNTUPLECONTAINER_H 1
// Framework include files
#include <functional>
#include <map>
#include <set>
#include <vector>
#include "StorageSvc/DbColumn.h"
#include "StorageSvc/DbContainerImp.h"
#include "StorageSvc/DbDatabase.h"
#include <vector>
#include <memory>
#include <string>
// Forward declarations
class TClass;
......@@ -87,7 +87,7 @@ class RNTupleContainer : public DbContainerImp
protected:
/// reference to exact type description
const DbTypeInfo* m_type;
const DbTypeInfo* m_type{};
/// List of field descriptors
std::vector<FieldDesc> m_fieldDescs;
/// Parent Database handle
......@@ -106,7 +106,7 @@ class RNTupleContainer : public DbContainerImp
RootAuxDynIO::IRNTupleWriter* m_ntupleWriter = nullptr;
/// Note: the Fields need to be destroyed before the page source is gone
RPageSource* m_pageSource;
RPageSource* m_pageSource{};
public:
/// Standard constructor
......
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