diff options
Diffstat (limited to 'Include/stringobject.h')
-rw-r--r-- | Include/stringobject.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/stringobject.h b/Include/stringobject.h index a4b4ea6..fa2e8a1 100644 --- a/Include/stringobject.h +++ b/Include/stringobject.h @@ -51,6 +51,9 @@ functions should be applied to nil objects. typedef struct { OB_VARHEAD +#ifdef CACHE_HASH + long ob_shash; +#endif char ob_sval[1]; } stringobject; |