Skip to content
Snippets Groups Projects
Commit 784cfb20 authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'cppcheck.StorageSvc-20240306' into 'main'

StorageSvc: Fix cppcheck warning.

See merge request atlas/athena!69583
parents 7bab0df3 fd6fea6c
No related branches found
No related tags found
No related merge requests found
/* /*
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
*/ */
//==================================================================== //====================================================================
...@@ -76,7 +76,7 @@ namespace pool { ...@@ -76,7 +76,7 @@ namespace pool {
static const DbStatus Success (DbStatus::Success); static const DbStatus Success (DbStatus::Success);
static const DbStatus Warning (DbStatus::Warning); static const DbStatus Warning (DbStatus::Warning);
static const DbStatus Error (DbStatus::Error); static const DbStatus Error (DbStatus::Error);
static const DbStatus ConnTimeout (DbStatus::Error+2); static const DbStatus ConnTimeout (static_cast<unsigned int>(DbStatus::Error)+2);
/// Issue a debug break /// Issue a debug break
void debugBreak(); void debugBreak();
......
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