summaryrefslogtreecommitdiff
path: root/jni/ruby/template/known_errors.inc.tmpl
diff options
context:
space:
mode:
authorJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-16 18:49:26 +0900
committerJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-30 00:39:06 +0900
commitfcbf63e62c627deae76c1b8cb8c0876c536ed811 (patch)
tree64cb17de3f41a2b6fef2368028fbd00349946994 /jni/ruby/template/known_errors.inc.tmpl
Fresh start
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