about summary refs log tree commit diff stats
path: root/057static_dispatch.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-01-17 21:20:05 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-01-17 22:27:20 -0800
commit94fed2020040cf469bd47c8890ed4e609e3ed561 (patch)
tree670e2145ff2478e6859bca5b9cb0bf997539cd93 /057static_dispatch.cc
parent3063b2393aa1f76acdf59736649997da8a21bd84 (diff)
downloadmu-94fed2020040cf469bd47c8890ed4e609e3ed561.tar.gz
2561
Reorganize layers in preparation for a better, more type-safe
implementation of first-class and higher-order recipes.
Diffstat (limited to '057static_dispatch.cc')
-rw-r--r--057static_dispatch.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/057static_dispatch.cc b/057static_dispatch.cc
index bc699bcb..dc2e4cb5 100644
--- a/057static_dispatch.cc
+++ b/057static_dispatch.cc
@@ -457,3 +457,8 @@ recipe foo a:boolean -> b:number [
 ]
 +error: main: missing type for x in 'y:number <- foo x'
 +error: main: failed to find a matching call for 'y:number <- foo x'
+
+:(before "End Includes")
+using std::min;
+using std::max;
+using std::abs;