From 03056bbcb9cc22d216a3183073e42e15fc95da04 Mon Sep 17 00:00:00 2001
From: Scott Snyder <scott.snyder@cern.ch>
Date: Fri, 26 Aug 2016 18:50:35 +0200
Subject: [PATCH] 'Coverity 111488.' (RootFileTools-00-01-60)

	* Tagging RootFileTools-00-01-60.
	* src/merge.cxx: Coverity 111488.
---
 Database/AthenaPOOL/RootFileTools/src/merge.cxx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Database/AthenaPOOL/RootFileTools/src/merge.cxx b/Database/AthenaPOOL/RootFileTools/src/merge.cxx
index 13a0366e041..2afe3818d93 100644
--- a/Database/AthenaPOOL/RootFileTools/src/merge.cxx
+++ b/Database/AthenaPOOL/RootFileTools/src/merge.cxx
@@ -100,7 +100,7 @@ void addBranch( ::TTree* otree, ::TBranch* ibranch )
    // Get the type of the branch:
    TClass* cl = 0;
    EDataType dt = kOther_t;
-   ibranch->GetExpectedType( cl, dt );
+   (void)ibranch->GetExpectedType( cl, dt );
 	
    // Pointer to the output branch:
    ::TBranch* obranch = 0;
-- 
GitLab