diff options
author | Max Kellermann <max@duempel.org> | 2015-01-21 21:12:54 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-01-21 21:18:25 +0100 |
commit | 76b7882f3324bb892a9ccc874e1bdacfd72e7b98 (patch) | |
tree | bf9679518ecb502322b7bbc17e324991f7a9de5d /src/config/Block.hxx | |
parent | bf0ab2d44c38064624778d5fb6d868cea7cb4e1a (diff) | |
download | mpd-76b7882f3324bb892a9ccc874e1bdacfd72e7b98.tar.gz mpd-76b7882f3324bb892a9ccc874e1bdacfd72e7b98.tar.xz mpd-76b7882f3324bb892a9ccc874e1bdacfd72e7b98.zip |
ConfigData: rename struct block_param to BlockParam
Diffstat (limited to 'src/config/Block.hxx')
-rw-r--r-- | src/config/Block.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config/Block.hxx b/src/config/Block.hxx index 1295c7289..c2194eff9 100644 --- a/src/config/Block.hxx +++ b/src/config/Block.hxx @@ -25,7 +25,7 @@ #include <string> -struct block_param { +struct BlockParam { std::string name; std::string value; int line; @@ -37,7 +37,7 @@ struct block_param { mutable bool used; gcc_nonnull_all - block_param(const char *_name, const char *_value, int _line=-1) + BlockParam(const char *_name, const char *_value, int _line=-1) :name(_name), value(_value), line(_line), used(false) {} gcc_pure |