-
Surpress compiler warnings of third party libraries
I like my compiler to be very verbose and pedantic. For me, -Wall -Wextra -pedantic -Weffc++ is a must. And I don’t want to see any warnings before releasing my software. Well, but your compiler might still complain about headers of third party libraries which you do not want to touch. How to remove those…
-
typedef syntax with (member) function pointers
MSDN states, that the typedef syntax is But that’s not the whole truth. If you want to typedef a function pointer or member function pointer, this is wrong: This is the correct syntax:
