aboutsummaryrefslogtreecommitdiff
path: root/system/include
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2014-04-30 13:40:27 -0700
committerAlon Zakai <alonzakai@gmail.com>2014-04-30 13:40:27 -0700
commit9dd3a7059749d4051202687817bf6b68ab2ce54c (patch)
tree6f98400f4bb90aedd7ea419163febb1d70c488fd /system/include
parent63f913cc533e20cea584d2407de78c933d063b67 (diff)
parent7da733906454466f4ae22d1a1541ea152f5025db (diff)
Merge pull request #2327 from chadaustin/embind-asmjs-precise-f32
Fix embind/asm.js in PRECISE_F32 mode
Diffstat (limited to 'system/include')
-rw-r--r--system/include/emscripten/bind.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/include/emscripten/bind.h b/system/include/emscripten/bind.h
index 699e834b..eede0755 100644
--- a/system/include/emscripten/bind.h
+++ b/system/include/emscripten/bind.h
@@ -330,7 +330,7 @@ namespace emscripten {
template<>
struct SignatureCode<float> {
static constexpr char get() {
- return 'd';
+ return 'f';
}
};