MusicChunk: use constexpr for CHUNK_SIZE

This commit is contained in:
Max Kellermann 2013-09-26 21:49:26 +02:00
parent 5bc4ab899f
commit 17e108a10a

View File

@ -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;