Petar Petrov
Petar Petrov
I can´t guarantee that the different string.h implementations will have defines for their methods, hence this is not universal solution, Closed until I find a proper solution.
Yes, my bad for not checking, usually libs come with the macros. Another possibility is to check for compiler. ``` #ifdef __clang__ /*code specific to clang compiler*/ #elif __GNUC__ /*code...
Do you guys have any objection about replacing `#ifdef __MINGW32__` with `#ifdef _WIN32` ? looks like clang will have the same issue [https://github.com/llvm-mirror/libcxx/blob/master/include/string.h](https://github.com/llvm-mirror/libcxx/blob/master/include/string.h) and probably MSVC too.
The macros `__MINGW32__` and `_WIN32` are defined by compilers for 32-bit and 64-bit. > isn't there something more posixy to use on windows these days, like that Linux Subsystem for...
I was having the same issue and until this is fixed you can work around it like this: ``` class ErrorServer(HashModel): local_hostname: str ``` ``` es = ErrorServer(pk=Mmh3PrimaryKey.create_pk(some_arg), local_hostname='my_hostname', param2='Test')...
I was wondering the same, when I found out some things like `_onTxDone` are not implemented in the current version of this repo.
How about having master with restricted rights, usually no one should be working manually on it, only maintainers resolving disasters. Then we can have many other branches, and one of...
There should be but there also could bring unexpected issues, I would say instead of having it inside the repo (Usually bad practice) we should use git submodules.
Yes, there is ways to set the subfolder as a submodule but I agree with this answer here https://stackoverflow.com/a/5303850 I would live with having the whole repo as submodule Another...
#20 suggest that we will have to fork simavr and do some changes.