X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Ftabcompleter.cpp;h=faad451c89b36eeea6d63d84940306f00d2ad1e8;hp=46d8a8df5af5b152a0cd706556abec8a863554eb;hb=9ba2ca5186c8598e33910a7df95bbdbf812a1a3d;hpb=f5abb30ac6ec8089901d686d9c2ec3387f97aaef diff --git a/src/uisupport/tabcompleter.cpp b/src/uisupport/tabcompleter.cpp index 46d8a8df..faad451c 100644 --- a/src/uisupport/tabcompleter.cpp +++ b/src/uisupport/tabcompleter.cpp @@ -109,7 +109,7 @@ void TabCompleter::buildCompletionList() case BufferInfo::QueryBuffer: if (regex.indexIn(_currentBufferName) > -1) _completionMap[_currentBufferName.toLower()] = _currentBufferName; - [[fallthrough]]; + [[clang::fallthrough]]; case BufferInfo::StatusBuffer: if (!_currentNetwork->myNick().isEmpty() && regex.indexIn(_currentNetwork->myNick()) > -1) _completionMap[_currentNetwork->myNick().toLower()] = _currentNetwork->myNick();