summaryrefslogtreecommitdiff
path: root/graphics/asymptote/builtin.h
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/asymptote/builtin.h')
-rw-r--r--graphics/asymptote/builtin.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/graphics/asymptote/builtin.h b/graphics/asymptote/builtin.h
index f29a97ccd4..d59c5aa8c8 100644
--- a/graphics/asymptote/builtin.h
+++ b/graphics/asymptote/builtin.h
@@ -21,9 +21,9 @@ void base_tenv(tenv &);
void base_venv(venv &);
extern const types::formal noformal;
-
+
// Add a function with one or more default arguments.
-void addFunc(venv &ve, vm::bltin f, types::ty *result, symbol name,
+void addFunc(venv &ve, vm::bltin f, types::ty *result, symbol name,
types::formal f1=noformal, types::formal f2=noformal,
types::formal f3=noformal, types::formal f4=noformal,
types::formal f5=noformal, types::formal f6=noformal,
@@ -33,7 +33,7 @@ void addFunc(venv &ve, vm::bltin f, types::ty *result, symbol name,
types::formal fD=noformal, types::formal fE=noformal,
types::formal fF=noformal, types::formal fG=noformal,
types::formal fH=noformal, types::formal fI=noformal);
-
+
// Adds standard functions for a newly added types.
void addArrayOps(venv &ve, types::array *t);
void addRecordOps(venv &ve, types::record *r);
@@ -43,7 +43,7 @@ void addFunctionOps(venv &ve, types::function *f);
types::record *getGSLModule();
void GSLrngFree();
#endif
-
+
} //namespace trans
namespace run {