diff options
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 |