ferkulat
ferkulat
I have another use case for changing the output value of several pins at once: Driving a 7-segment display. Rather than setting 7 pins separately for each number, I would...
how about returning an enum class like ``` enum class {FAIL, EXIT_WITH_SUCCESS, SUCCESS} ``` The names are a quick shot, but you get the idea.
In my opinion, it is not the responsibility of the parser to exit the program. Just parse and return success/failure. And the user of this parser makes a decision depending...
Today I read about signal handling. It seems it is not that portable, as it could. A signal (like from exit(int)) gets emitted no destructors will get called. Maybe this...
Feel free to merge the PR anyway or at least cherrypick 42320bf please.
Hello @Lecrapouille , > unknown class which can may delete it. So false security. Raw pointers are not bad by default. Transferring owner ship should not be done with them....
Hello @Lecrapouille, > The idea would be not storing pointers in vector but directly the class Since runtime polymorphism is used in this project, you will have to stick with...
I also had linker errors when compiling and using celeoro v2.8.5 as static library. in my case ( using mingw) I needed to do ``` if(MINGW) target_compile_definitions(${PROJECT_NAME} PRIVATE CELERO_STATIC) endif(MINGW)...
Hi, in general it could be possible. But I never had a need for it. Do you have a use case to convert xls files into csv in batches?
Since maintaining "csv2xls" is something I do in my spare time I can not promise anything about "if" and "when". But you wrote you are using powershell. I could imagine...