diff options
| author | 2018-11-27 20:29:47 -0500 | |
|---|---|---|
| committer | 2018-11-28 22:02:03 -0500 | |
| commit | 081bcfd8329b1ef2a0c027c6ab5da5d7c0686d09 (patch) | |
| tree | fe7f068c7f0c24320a5981411c9646817fcfcfff /src/modules/dcc/DccVideoWindow.cpp | |
| parent | Modernize to C++17 (diff) | |
| download | KVIrc-081bcfd8329b1ef2a0c027c6ab5da5d7c0686d09.tar.gz KVIrc-081bcfd8329b1ef2a0c027c6ab5da5d7c0686d09.tar.bz2 KVIrc-081bcfd8329b1ef2a0c027c6ab5da5d7c0686d09.zip | |
Remove Q_UNUSED macros
Diffstat (limited to 'src/modules/dcc/DccVideoWindow.cpp')
| -rw-r--r-- | src/modules/dcc/DccVideoWindow.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/modules/dcc/DccVideoWindow.cpp b/src/modules/dcc/DccVideoWindow.cpp index 0e9246146..3497843ba 100644 --- a/src/modules/dcc/DccVideoWindow.cpp +++ b/src/modules/dcc/DccVideoWindow.cpp @@ -72,9 +72,8 @@ bool kvi_dcc_video_is_valid_codec(const char * codecName) return false; } -static DccVideoCodec * kvi_dcc_video_get_codec(const char * codecName) +static DccVideoCodec * kvi_dcc_video_get_codec([[maybe_unused]] const char * codecName) { - Q_UNUSED(codecName); #ifndef COMPILE_DISABLE_OGG_THEORA if(kvi_strEqualCI("theora", codecName)) return new DccVideoTheoraCodec(); |
