From 01afb73f51e847e1a23ce940b643a8dfeeb0e4e9 Mon Sep 17 00:00:00 2001 From: eadler Date: Mon, 4 Mar 2013 02:21:17 +0000 Subject: [PATCH] devd: Use the standard constructor of std::string instead of string(""). Submitted by: Christoph Mallon Approved by: cperciva (mentor) --- sbin/devd/devd.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbin/devd/devd.hh b/sbin/devd/devd.hh index 448a9e4965aa..9f70b23bc1d7 100644 --- a/sbin/devd/devd.hh +++ b/sbin/devd/devd.hh @@ -144,7 +144,7 @@ private: class config { public: - config() : _pidfile("") { push_var_table(); } + config() { push_var_table(); } virtual ~config() { reset(); } void add_attach(int, event_proc *); void add_detach(int, event_proc *);