fsmoke

Results 13 comments of fsmoke

I impatiently waiting implementation of this feature!!! Very, very need it!

Also i want to add - better use t13 but not m8 MCU for detect - because m8 not support HVSP programming mode see log ``` avrdude.exe: stk500hv_initialize(): high-voltage serial...

For now i wrote very ugly workaround - it's looks like very very bad! ``` namespace detail { //FIXME see BUG https://github.com/boostorg/gil/issues/724 template class istream_device : public istream_device { public:...

> to be included exactly once in a .cpp file i know it. But it's very uncomfortable. It means if i use boost json inside common header(NOT cpp) - ALL...

> Why is this difficult? It's difficult when you manage big product - you must notify many developers who use common header(one of hundred common headers). But if i include...

> CMakeLists we don't use cmake(sometimes use but in most cases no), moreover some developer groups use different build engines(msbiuld(yes for linux too), old makefiles and so on) PS i...

> Can you explain how using a macro is simpler than adding a line in a file? Because macro will be defined once - once for all projects, and all...

> So, making sure that every .cpp file includes this specific file is simpler than making sure one .cpp file includes src.hpp? my common.hpp may include many other dependencies ```...

> This setup screams "potential ODR violation". same thing you ev got now if accidentally include src.hpp twice - no difference. But in my case we save the developer from...

> but we are trying to move away from header-only libraries because they increase compile times 1)we use precompiled header - to decrease compile time 2)there is many business models...