Commit fdba76ba authored by Max Kellermann's avatar Max Kellermann

ConfigFile: convert macros to constexpr

parent f900ab01
......@@ -34,9 +34,9 @@
#include <assert.h>
#include <stdio.h>
#define MAX_STRING_SIZE MPD_PATH_MAX+80
static constexpr size_t MAX_STRING_SIZE = MPD_PATH_MAX + 80;
#define CONF_COMMENT '#'
static constexpr char CONF_COMMENT = '#';
static constexpr Domain config_file_domain("config_file");
......
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