Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 48932
Collapse All | Expand All

(-)src/tse3/file/XML.h.orig (+1 lines)
Lines 154-159 Link Here
154
                void element(const std::string &name, const char        *value);
154
                void element(const std::string &name, const char        *value);
155
                void element(const std::string &name, int                value);
155
                void element(const std::string &name, int                value);
156
                void element(const std::string &name, unsigned int       value);
156
                void element(const std::string &name, unsigned int       value);
157
                void element(const std::string &name, size_t	         value);
157
                void element(const std::string &name, bool               value);
158
                void element(const std::string &name, bool               value);
158
159
159
                void comment(const std::string &comment);
160
                void comment(const std::string &comment);
(-)src/tse3/file/XML.cpp.orig (+6 lines)
Lines 116-121 Link Here
116
    out << "<" << name << " value=\"" << value << "\"/>\n";
116
    out << "<" << name << " value=\"" << value << "\"/>\n";
117
}
117
}
118
118
119
void TSE3::File::XmlFileWriter::element(const std::string &name, size_t value)
120
{
121
    indent(out);
122
    out << "<" << name << " value=\"" << value << "\"/>\n";
123
}
124
119
125
120
void TSE3::File::XmlFileWriter::element(const std::string &name, bool value)
126
void TSE3::File::XmlFileWriter::element(const std::string &name, bool value)
121
{
127
{

Return to bug 48932