summaryrefslogtreecommitdiff
path: root/hwpfilter/source/mzstring.h
diff options
context:
space:
mode:
Diffstat (limited to 'hwpfilter/source/mzstring.h')
-rw-r--r--hwpfilter/source/mzstring.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/hwpfilter/source/mzstring.h b/hwpfilter/source/mzstring.h
index 89bd240691d3..0ed917204d2a 100644
--- a/hwpfilter/source/mzstring.h
+++ b/hwpfilter/source/mzstring.h
@@ -96,10 +96,10 @@ class MzString
MzString &operator << (const char *);
MzString &operator << (char);
- MzString &operator << (unsigned char c) { return *this<<(char)c; }
+ MzString &operator << (unsigned char c) { return *this<<static_cast<char>(c); }
MzString &operator << (int);
MzString &operator << (long);
- MzString &operator << (short i) { return *this<<(int)i; }
+ MzString &operator << (short i) { return *this<<static_cast<int>(i); }
MzString &operator << (MzString const &);
/* MzString &operator << (MzString *s) { return *this<<*s; }