Initialize bool member of Package in default constructor

Found by Coverity
This commit is contained in:
Jean-Marc Lasgouttes 2016-06-09 17:26:55 +02:00
parent ab40fe6f05
commit 7800c05788

View File

@ -51,7 +51,7 @@ Package const & package();
class Package {
public:
/// Default constructor does not lead to the paths being set.
Package() {}
Package() : explicit_user_support_dir_(false), in_build_dir_(false) {}
/** Called by init_package, above.
* All paths will be initialized.