diff options
author | Karl Berry <karl@freefriends.org> | 2010-07-11 22:39:53 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-07-11 22:39:53 +0000 |
commit | 4e8485b0ddecb55f72929dd6233f254a1e7bf5b0 (patch) | |
tree | 354324ee6f54d46053b3ce88fe9dc4acf8e2ed81 /Build/source/utils/asymptote/item.h | |
parent | 713bb91ad0467fb3b12acad03cae2fa105ed2caa (diff) |
asy 2.02
git-svn-id: svn://tug.org/texlive/trunk@19378 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/asymptote/item.h')
-rw-r--r-- | Build/source/utils/asymptote/item.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Build/source/utils/asymptote/item.h b/Build/source/utils/asymptote/item.h index 7c4eec4522f..9be21ab7b6f 100644 --- a/Build/source/utils/asymptote/item.h +++ b/Build/source/utils/asymptote/item.h @@ -47,6 +47,10 @@ extern const item Default; class item : public gc { private: +#if !COMPACT + const std::type_info *kind; +#endif + union { Int i; double x; @@ -103,8 +107,6 @@ public: item& operator= (const T &it) { i=(Int) new(UseGC) T(it); return *this; } #else - const std::type_info *kind; - bool empty() const {return *kind == typeid(void);} |