大明酱

Results 2 issues of 大明酱

我注意到README个段代码: ```c++ 取值的同时判断类型 int n; bool ret = j["boolean"].get_value(&n); // 若取值成功,ret 为 true ``` c++在新标准中已经对这种情况做出标准做法:使用std::optional. 修改成标准代码: ```c++ 取值的同时判断类型 int n; auto ret = j["boolean"].get_value(); // 若取值成功,ret 为 true //get_value()应该返回std::optional if(ret.has_value())...

enhancement

The LWJGL have added the bind of the freetype and the harfbuzz.(see https://github.com/LWJGL/lwjgl3/commit/9a00ff0af62aa0d0ddba04a88c1e5668d76699c8 and https://github.com/LWJGL/lwjgl3/commit/c84766565202ba41b71e23ca45a8e84a7d4cb971) For freetype,the libgdx have a bind too.But libgdx doesn't have a bind for harfbuzz. If...