libassert
libassert copied to clipboard
Strings that contains back slashes display wrongly
#include "assert.hpp"
int main()
{
const char* path = "\\hello\\test\\";
ASSERT(0, "", path);
}
Thank you for the report, looks like it's something to do with how the string is split across multiple lines
ah https://github.com/jeremy-rifkin/libassert/blob/080b08cb5c9ea4272e9f017ec79c81ca109a2766/src/assert.cpp#L1339-L1340
Fixed now, sorry for the slow response!