Skip to content
Snippets Groups Projects
Commit a9c96160 authored by Marco Clemencic's avatar Marco Clemencic
Browse files

Merge branch 'dev/scott/gcc7warn' into 'master'

Fix a couple gcc7 compilation warnings

See merge request !339
parents bafc770b e3840f7c
No related branches found
No related tags found
1 merge request!339Fix a couple gcc7 compilation warnings
Pipeline #
......@@ -610,7 +610,7 @@ inline void StreamBuffer::swapToBuffer(const void* source, int siz) {
::_swab (src, buff, siz);
#endif
src = buff;
/* no break */
/* FALLTHROUGH */
case NOSWAP:
std::copy_n(src,siz,tar);
break;
......
......@@ -86,7 +86,7 @@ StatusCode EventSelectorDataStream::initialize()
case 'C':
svc = "EvtTupleSvc";
isData = false;
/* no break */
/* FALLTHROUGH */
case 'E':
hash = attrib.value.find( '#' );
if ( hash > 0 ) {
......
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