diff options
author | Karl Berry <karl@freefriends.org> | 2009-07-08 01:04:31 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2009-07-08 01:04:31 +0000 |
commit | 17ee31b51081b8281b652fa06b997918003f7772 (patch) | |
tree | c5c1420540fe9a31454c1450ec5d96c096f91a9b /Build/source/utils/asymptote/errormsg.cc | |
parent | bf914f81a2ff8552e1438251f4b6b56f9acf0b90 (diff) |
asymptote 1.80
git-svn-id: svn://tug.org/texlive/trunk@14179 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/asymptote/errormsg.cc')
-rw-r--r-- | Build/source/utils/asymptote/errormsg.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Build/source/utils/asymptote/errormsg.cc b/Build/source/utils/asymptote/errormsg.cc index 3b7b3e9020d..b9b45ee0d2d 100644 --- a/Build/source/utils/asymptote/errormsg.cc +++ b/Build/source/utils/asymptote/errormsg.cc @@ -7,7 +7,6 @@ #include <cstdio> #include <cstdlib> -#include <cstdarg> #include "errormsg.h" @@ -70,6 +69,11 @@ void errorstream::warning(position pos) anyWarnings = true; } +void errorstream::disable(string s) +{ + out << ": to ignore, use nowarn(\""+s+"\");"; +} + void errorstream::fatal(position pos) { message(pos,"abort: "); |