diff options
author | Karl Berry <karl@freefriends.org> | 2010-07-04 17:26:20 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-07-04 17:26:20 +0000 |
commit | 15807e15ade01ea275cb91ba5ea6b660b996406f (patch) | |
tree | d929429372f1984140fc0384c2fb73e4845a48a8 /Build/source/utils/asymptote/item.h | |
parent | ea6aa8ed9ddfe75f76b6bf23e5b8737230be98e7 (diff) |
asy 2.00
git-svn-id: svn://tug.org/texlive/trunk@19227 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/asymptote/item.h')
-rw-r--r-- | Build/source/utils/asymptote/item.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Build/source/utils/asymptote/item.h b/Build/source/utils/asymptote/item.h index 27b8787df9d..9a42f8bf2e2 100644 --- a/Build/source/utils/asymptote/item.h +++ b/Build/source/utils/asymptote/item.h @@ -64,6 +64,8 @@ public: item& operator= (int a) { i=a; return *this; } + item& operator= (unsigned int a) + { i=a; return *this; } item& operator= (Int a) { i=a; return *this; } item& operator= (double a) @@ -108,6 +110,8 @@ public: item& operator= (int a) { kind=&typeid(Int); i=a; return *this; } + item& operator= (unsigned int a) + { kind=&typeid(Int); i=a; return *this; } item& operator= (Int a) { kind=&typeid(Int); i=a; return *this; } item& operator= (double a) |