From a2ab0fd327b427d1f537cb7bc79de985fae3a0f5 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Tue, 17 Nov 2015 23:48:28 -0800 Subject: [PATCH] Put the filename in _trace to make it more useful. --- Exception.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exception.hpp b/Exception.hpp index 0282f0f..ff63b8c 100644 --- a/Exception.hpp +++ b/Exception.hpp @@ -78,7 +78,7 @@ while (false) _value; }) #define _trace() do { \ - fprintf(stderr, "_trace():%u\n", __LINE__); \ + fprintf(stderr, "_trace(%s:%u)\n", __FILE__, __LINE__); \ } while (false) static _finline bool CYContains(int value, size_t many, const int *okay) { -- 2.47.2