summaryrefslogtreecommitdiff
path: root/Master/texmf/asymptote/plain_constants.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/asymptote/plain_constants.asy')
-rw-r--r--Master/texmf/asymptote/plain_constants.asy7
1 files changed, 7 insertions, 0 deletions
diff --git a/Master/texmf/asymptote/plain_constants.asy b/Master/texmf/asymptote/plain_constants.asy
index c1d8c086f71..32138756891 100644
--- a/Master/texmf/asymptote/plain_constants.asy
+++ b/Master/texmf/asymptote/plain_constants.asy
@@ -67,6 +67,13 @@ void tab(file file) {write(file,'\t');}
void comma(file file) {write(file,',');}
typedef void suffix(file);
+// Used by interactive write to warn that the outputted type is the resolution
+// of an overloaded name.
+void overloadedMessage(file file) {
+ write(file,' <overloaded>');
+ endl(file);
+}
+
void write(suffix suffix=endl) {suffix(stdout);}
void write(file file, suffix suffix=none) {suffix(file);}