We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd91160 commit be07c7eCopy full SHA for be07c7e
debug.hpp
@@ -13,7 +13,7 @@ enum dbg_lvl_t : uint32_t {
13
EXTEND_COMPOUND = 16,
14
EXTEND_COMPLEX = 32,
15
LCS = 64,
16
- EXTEND_OBJECT = 128,
+ EXTEND_OBJECT = 128,
17
ALL = UINT32_MAX
18
};
19
@@ -38,6 +38,11 @@ namespace Sass {
38
39
}
40
41
+// Visual Studio 2013 does not like __func__
42
+#if _MSC_VER < 1900
43
+#define __func__ __FUNCTION__
44
+#endif
45
+
46
#define TRACE() \
47
if (logTRACE > Sass::LibsassLogReportingLevel) ; \
48
else Sass::Log().Get(Sass::logTRACE, __func__, __FILE__, __LINE__)
0 commit comments