Skip to content
Snippets Groups Projects
Commit ee3c7830 authored by Scott Snyder's avatar Scott Snyder Committed by Graeme Stewart
Browse files

Avoid gcc7 switch fallthrough warnings. (TBDetDescrAlg-00-00-07)

	* Tagging TBDetDescrAlg-00-00-07.
	* Avoid gcc7 switch fallthrough warnings.
parent 6ca6314c
No related merge requests found
...@@ -130,6 +130,7 @@ StatusCode TBDetDescrLoader::execute() { ...@@ -130,6 +130,7 @@ StatusCode TBDetDescrLoader::execute() {
case 1: // write once case 1: // write once
m_writeAction = 0; // don't do anything anymore m_writeAction = 0; // don't do anything anymore
// but without break proceed to next case // but without break proceed to next case
/* FALLTHROUGH */
case 2: // write always case 2: // write always
...@@ -156,6 +157,7 @@ StatusCode TBDetDescrLoader::execute() { ...@@ -156,6 +157,7 @@ StatusCode TBDetDescrLoader::execute() {
case 1: // read once case 1: // read once
m_readAction = 0; // don't do anything anymore m_readAction = 0; // don't do anything anymore
// but without break proceed to next case // but without break proceed to next case
/* FALLTHROUGH */
case 2: // read always case 2: // read always
......
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