Browse Source

unsigned int is typedef'd as uint in "most" compilers, but not all

JNI-114
heck 5 years ago
parent
commit
8fe50aeb6d
  1. 2
      src/gen_cpp_Engine.ysl2

2
src/gen_cpp_Engine.ysl2

@ -282,7 +282,7 @@ tstylesheet {
when "$type='int'"
| int _«$name» = (int) «$name»;
when "$type='uint'"
| auto _«$name» = (uint) «$name»;
| auto _«$name» = (unsigned int) «$name»;
when "$type='string'"
| const char *_«$name» = to_string(env, «$name»);
otherwise {

Loading…
Cancel
Save