SpareSimian

Results 102 comments of SpareSimian

I installed BetterBags, which doesn't seem to be affected by this. I wonder what's different? (The lack of the N button in BB to clear the new items flag is...

Can you add something to the init code that shuts it down if BetterBags is detected? This would make it easy to switch back and forth by simply enabling/disabling the...

> Howdy, AdiBagman! Have you had a change to make the import feature from AdiBags to better bags? @Michael-Cooney See the issue here: https://github.com/Cidan/BetterBags/issues/122

Sorry for the noob question, but what is autowire in this context? Googling just turns up something to do with something called Spring. It doesn't look relevant. I'm about to...

So we need a new release tag to trigger the distros to bundle this support. What gates that?

So it's like Billie Eilish? Makes sense.

I ran into a similar issue with the wxWidgets macros that create a path for an include directive and found this [similar bug report](https://sourceforge.net/p/cppcheck/discussion/general/thread/703df00a29/). My code (extracted from wx's setup.h...

Put the above sample in a .cpp file and cppcheck throws an error. It's trying to compute a string that looks like "../../../lib/vc142_x64_lib/mswud/setup.h". I copied the above into token_concat.cpp, loaded...

You can replace the include directive with this to make it easier to see. I can reproduce it in the debugger in Visual Studio but I'm not familiar enough with...

I managed to shrink the failing sample down to this: ``` #define wxCONCAT(text1, text2) text1 ## text2 #define wxCONCAT3(x1, x2, x3) wxCONCAT(wxCONCAT(x1, x2), x3) #define wxSETUPH_PATH wxCONCAT3(vc142, _x64, _lib) extern...