Blake-Madden

Results 12 comments of Blake-Madden

I forked a C++ version of this library that includes logic and comparison operators in case that is useful to anyone: https://github.com/Blake-Madden/tinyexpr-plusplus

For what it's worth, I have an example `LogFile` class (derived from `wxLog`): https://github.com/Blake-Madden/Wisteria-Dataviz/blob/main/src/util/logfile.cpp https://github.com/Blake-Madden/Wisteria-Dataviz/blob/main/src/util/logfile.h Maybe that could be useful for at least showing how to make your own file...

In case this helps, I've added support for these operators to the C++ version at: https://github.com/Blake-Madden/tinyexpr-plusplus

I also just added the functions `BITLSHIFT()` and `BITRSHIFT()`, which work like their counterparts in Excel. Note that if you pass a negative shift amount to `BITLSHIFT()`, then it calls...

In case this helps, with the c++ version at: https://github.com/Blake-Madden/tinyexpr-plusplus if you compile with `TE_LONG_DOUBLE`, that will tell the parser to use `long double` internally. This will hold either 53-bit...

Alright, I think everything is good now. We can (squash and) merge this now. I'll work on GTK+ support next week in another PR.

OK, all builds are good now.

I'm envisioning a fantastic regex to find all of these :) I work on a tool that checks for deprecated things like `wxOVERRIDE`; I could maybe add some sort of...

Note: I don't have the new source file included in the build system, I wasn't able to figure out how to do that yet.

> This is described here: https://github.com/wxWidgets/wxWidgets/blob/master/docs/contributing/how-to-add-files-to-build-system.md Nice, thanks! If the general consensus is that this interface looks OK I'll work on that next...