devd: Use the standard constructor of std::string instead of string("").
Submitted by: Christoph Mallon <christoph.mallon@gmx.de> Approved by: cperciva (mentor)
This commit is contained in:
parent
229e6c1666
commit
01afb73f51
@ -144,7 +144,7 @@ private:
|
|||||||
class config
|
class config
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
config() : _pidfile("") { push_var_table(); }
|
config() { push_var_table(); }
|
||||||
virtual ~config() { reset(); }
|
virtual ~config() { reset(); }
|
||||||
void add_attach(int, event_proc *);
|
void add_attach(int, event_proc *);
|
||||||
void add_detach(int, event_proc *);
|
void add_detach(int, event_proc *);
|
||||||
|
Loading…
Reference in New Issue
Block a user