diff options
| author | Robin Howard <robin@rhoward.id.au> | 2023-10-28 13:25:50 +1100 |
|---|---|---|
| committer | Robin Howard <robin@rhoward.id.au> | 2023-10-28 13:25:50 +1100 |
| commit | 18d90051c9145ead86d4da701a2bc54f45e4fb66 (patch) | |
| tree | 38238375a002dbb599f614b1b9d0e73de0876a60 /src/codecs/vorbis.cpp | |
| parent | 6ef0fa2b1b75f2afd3beaf112b6a29a989ce49d8 (diff) | |
| download | tangara-fw-18d90051c9145ead86d4da701a2bc54f45e4fb66.tar.gz | |
Annotates the kTag with maybe_unused; they're only used for logging.
Diffstat (limited to 'src/codecs/vorbis.cpp')
| -rw-r--r-- | src/codecs/vorbis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codecs/vorbis.cpp b/src/codecs/vorbis.cpp index 764f58d9..3b3798cb 100644 --- a/src/codecs/vorbis.cpp +++ b/src/codecs/vorbis.cpp @@ -32,7 +32,7 @@ namespace codecs { -static constexpr char kTag[] = "vorbis"; +[[maybe_unused]] static constexpr char kTag[] = "vorbis"; static size_t read_cb(void* ptr, size_t size, size_t nmemb, void* instance) { IStream* source = reinterpret_cast<IStream*>(instance); |
