Add missing member initializations

This commit is contained in:
Georg Baum 2014-05-24 16:02:31 +02:00
parent d4c21b42dd
commit ff8450f839

View File

@ -57,7 +57,7 @@ enum CharInfoFlags {
/// Information about a single UCS4 character /// Information about a single UCS4 character
class CharInfo { class CharInfo {
public: public:
CharInfo() {} CharInfo() : flags_(0) {}
CharInfo( CharInfo(
docstring const textcommand, docstring const mathcommand, docstring const textcommand, docstring const mathcommand,
std::string const textpreamble, std::string const mathpreamble, std::string const textpreamble, std::string const mathpreamble,
@ -121,7 +121,7 @@ public:
/// Represent any of the above packages /// Represent any of the above packages
static int const any; static int const any;
/// ///
Encoding() {} Encoding() : fixedwidth_(true), unsafe_(false), complete_(false) {}
/// ///
Encoding(std::string const & n, std::string const & l, Encoding(std::string const & n, std::string const & l,
std::string const & g, std::string const & i, std::string const & g, std::string const & i,