We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
terminate called after throwing an instance of 'Json::LogicError' what(): LargestUInt out of Int range
The text was updated successfully, but these errors were encountered:
to reproduce:
#include "i3ipc++/ipc.hpp" int main(){ i3ipc::connection conn; auto tree = conn.get_tree()->nodes; }
Sorry, something went wrong.
GDB reports it occuring in this function:
inline rect_t parse_rect_from_json(const Json::Value& value) { return { .x = value["x"].asInt(), .y = value["y"].asInt(), //this line specifically .width = value["width"].asUInt(), .height = value["height"].asUInt(), }; }
My system is ubuntu 20 running i3-gaps
It sounds like a really edgy case. Provide result of i3-msg -t get_tree, if this can still be reproduced
i3-msg -t get_tree
No branches or pull requests
The text was updated successfully, but these errors were encountered: