Commit 17e108a1 authored by Max Kellermann's avatar Max Kellermann

MusicChunk: use constexpr for CHUNK_SIZE

parent 5bc4ab89
......@@ -29,9 +29,7 @@
#include <stdint.h>
#include <stddef.h>
enum {
CHUNK_SIZE = 4096,
};
static constexpr size_t CHUNK_SIZE = 4096;
struct AudioFormat;
struct Tag;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment