summaryrefslogtreecommitdiff
path: root/jni/ruby/template/known_errors.inc.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'jni/ruby/template/known_errors.inc.tmpl')
-rw-r--r--jni/ruby/template/known_errors.inc.tmpl14
1 files changed, 14 insertions, 0 deletions
diff --git a/jni/ruby/template/known_errors.inc.tmpl b/jni/ruby/template/known_errors.inc.tmpl
new file mode 100644
index 0000000..c3aee77
--- /dev/null
+++ b/jni/ruby/template/known_errors.inc.tmpl
@@ -0,0 +1,14 @@
+/** -*-c-*-
+ * DO NOT EDIT
+ * This file is automatically generated by tool/generic_erb.rb from
+ * template/known_errors.inc.tmpl and defs/known_errors.def.
+ */
+
+% error_names = ARGF.read.split(/\s+/)
+% error_names.each do |name|
+#ifdef <%=name%>
+ defined_error("<%=name%>", <%=name%>)
+#else
+ undefined_error("<%=name%>")
+#endif
+% end