David Bremner

Results 2 comments of David Bremner

Here is what my loguru implementation file looks like. My project uses warning level 4. ``` #include "stdafx.h" #pragma warning( push ) #pragma warning( disable : 4100) //unreferenced parameters #pragma...

@paralaxsd, \_snprintf does not guarantee null termination. Here is a quote from the [documentation](https://msdn.microsoft.com/en-us/library/2ts7cx93.aspx). _The \_snprintf family of functions only appends a terminating null character if the formatted string length...