summaryrefslogtreecommitdiff
path: root/src/misc/blob.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/misc/blob.hpp')
-rw-r--r--src/misc/blob.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/misc/blob.hpp b/src/misc/blob.hpp
index 86d924daf..78cac0f72 100644
--- a/src/misc/blob.hpp
+++ b/src/misc/blob.hpp
@@ -59,7 +59,9 @@ protected:
/** type used as class member */
union {
bitem_t *m_pData; ///< ptr to the first byte of data
+#if defined(HAS_WCHAR)
wchar_t *m_pwData; ///< ptr to the first byte of data
+#endif /* HAS_WCHAR */
CHdr *m_pHdr_1; ///< ptr just after the CHdr holding m_size and m_max_size
} ptr_u;