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 cbaaa1a commit 2b60176Copy full SHA for 2b60176
Makefile
@@ -120,6 +120,7 @@ SOURCES = \
120
contextualize.cpp \
121
contextualize_eval.cpp \
122
cssize.cpp \
123
+ debug.cpp \
124
listize.cpp \
125
error_handling.cpp \
126
eval.cpp \
debug.hpp
@@ -1,6 +1,7 @@
1
#ifndef SASS_DEBUG_H
2
#define SASS_DEBUG_H
3
4
+#define __STDC_LIMIT_MACROS
5
#include <stdint.h>
6
7
enum dbg_lvl_t : uint32_t {
@@ -12,7 +13,7 @@ enum dbg_lvl_t : uint32_t {
12
13
EXTEND_COMPOUND = 16,
14
EXTEND_COMPLEX = 32,
15
LCS = 64,
- EXTEND_OBJECT = 128,
16
+ EXTEND_OBJECT = 128,
17
ALL = UINT32_MAX
18
};
19
0 commit comments