OLD | NEW |
---|---|
(Empty) | |
1 {% from "java_macros.tmpl" import build_default %} | |
2 | |
3 {% macro constant_def(constant) %} | |
4 public static final {{constant.kind|java_type}} {{constant|constant_name}} = {{b uild_default(module, constant.kind, constant.value)|indent(4)}}; | |
rmcilroy
2014/05/25 22:55:10
Do we need build_default()? The cpp binding gener
qsr
2014/05/26 08:41:20
Updated build_default() to be a lot simpler, but
rmcilroy
2014/05/26 11:13:48
I am fine with build_default existing (and being u
qsr
2014/05/26 12:33:43
I don't understand. The macro is only using expres
rmcilroy
2014/05/27 09:44:34
I was presuming you were going to update the build
| |
5 {% endmacro %} | |
OLD | NEW |