mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 05:16:21 +00:00
Add missing member initializations
This commit is contained in:
parent
d4c21b42dd
commit
ff8450f839
@ -57,7 +57,7 @@ enum CharInfoFlags {
|
||||
/// Information about a single UCS4 character
|
||||
class CharInfo {
|
||||
public:
|
||||
CharInfo() {}
|
||||
CharInfo() : flags_(0) {}
|
||||
CharInfo(
|
||||
docstring const textcommand, docstring const mathcommand,
|
||||
std::string const textpreamble, std::string const mathpreamble,
|
||||
@ -121,7 +121,7 @@ public:
|
||||
/// Represent any of the above packages
|
||||
static int const any;
|
||||
///
|
||||
Encoding() {}
|
||||
Encoding() : fixedwidth_(true), unsafe_(false), complete_(false) {}
|
||||
///
|
||||
Encoding(std::string const & n, std::string const & l,
|
||||
std::string const & g, std::string const & i,
|
||||
|
Loading…
Reference in New Issue
Block a user