Kubo Takehiro
Kubo Takehiro
Close #246 This pull request consists of three commits. 1. The first commit adds the following method to `Parser` and use it in the `parse_expression` method with two arguments. ```c++...
I inserted the following three lines [here](https://github.com/pantor/inja/blob/v3.3.0/test/test-functions.cpp#L252) and ran tests. ```c++ CHECK(env.render("{{ multiply(3, 3) }}", data) == "9.0"); CHECK(env.render("{{ multiply(3, 1 + 2) }}", data) == "9.0"); CHECK(env.render("{{ multiply(1 +...
@tomasjura This is a one-to-one mapping. I won't merge it because it isn't easy-to-use and some methods' usages are obscure for me. The following classes and methods are added. *...
IMO, #744 and #638 would be almost solved if node-oracledb converts Oracle numbers to javascript numbers via strings. As far as I checked, node-js does its best about conversion between...
A comment in src/prefix.c contains two '\x97' bytes. They are em dash characters in single-byte Windows code pages such as 1252. However they are invalid in Japanese code page. This...
I tested this by using Oracle database command line client `sqlplus`. With this option, typing control + C cancels executing statement immediately. Without it, it needs a few seconds.
This closes #234. When I have a list of items (could be objects as well) in the json data file. ```json [ "item1", "item2","item3" ] ``` Now when trying to...
`injector_uninject` succeeds even though it doesn't unload libraries when the libc is musl. That's because musl's `dlclose` is a no-op. See https://wiki.musl-libc.org/functional-differences-from-glibc.html#Unloading_libraries
Any function compiled by the default C compiler (gcc-11) on Ubuntu 22.04 starts with endbr32/64. However distorm hasn't supported it yet(https://github.com/gdabah/distorm/issues/131#issuecomment-444846043). Other libraries support it. distorm (master branch): ``` 000055d29b704c18...
This fixes undefined symbol errors on Windows when the Ruby library is linked dynamically. Ruby variables are declared with __declspec(dllimport) on Windows. So the symbols name of variables are decorated...