Fixed error given by g++ 3.3 but not >= 3.4.
This commit is contained in:
parent
66ad33c37b
commit
c431335c66
@ -62,6 +62,10 @@ const string NULL_STRING;
|
|||||||
*/
|
*/
|
||||||
const text NULL_TEXT;
|
const text NULL_TEXT;
|
||||||
|
|
||||||
|
/** "Null" (empty) word.
|
||||||
|
*/
|
||||||
|
const word NULL_WORD;
|
||||||
|
|
||||||
|
|
||||||
/** Return the library name (eg. "libvmime").
|
/** Return the library name (eg. "libvmime").
|
||||||
*
|
*
|
||||||
|
@ -37,6 +37,7 @@
|
|||||||
namespace vmime
|
namespace vmime
|
||||||
{
|
{
|
||||||
class text;
|
class text;
|
||||||
|
class word;
|
||||||
class charset;
|
class charset;
|
||||||
|
|
||||||
|
|
||||||
@ -47,6 +48,7 @@ namespace vmime
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
extern const text NULL_TEXT;
|
extern const text NULL_TEXT;
|
||||||
|
extern const word NULL_WORD;
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
|
@ -41,8 +41,8 @@ protected:
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
defaultAttachment(ref <contentHandler> data, const encoding& enc, const mediaType& type, const text& desc = NULL_TEXT, const word& name = NULL_TEXT);
|
defaultAttachment(ref <contentHandler> data, const encoding& enc, const mediaType& type, const text& desc = NULL_TEXT, const word& name = NULL_WORD);
|
||||||
defaultAttachment(ref <contentHandler> data, const mediaType& type, const text& desc = NULL_TEXT, const word& name = NULL_TEXT);
|
defaultAttachment(ref <contentHandler> data, const mediaType& type, const text& desc = NULL_TEXT, const word& name = NULL_WORD);
|
||||||
defaultAttachment(const defaultAttachment& attach);
|
defaultAttachment(const defaultAttachment& attach);
|
||||||
|
|
||||||
~defaultAttachment();
|
~defaultAttachment();
|
||||||
|
Loading…
Reference in New Issue
Block a user