mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 13:18:28 +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
|
/// 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,
|
||||||
|
Loading…
Reference in New Issue
Block a user