Skip to content

Commit 2b60176

Browse files
committed
Compile debug.cpp, define UINT32_MAX
1 parent cbaaa1a commit 2b60176

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ SOURCES = \
120120
contextualize.cpp \
121121
contextualize_eval.cpp \
122122
cssize.cpp \
123+
debug.cpp \
123124
listize.cpp \
124125
error_handling.cpp \
125126
eval.cpp \

debug.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#ifndef SASS_DEBUG_H
22
#define SASS_DEBUG_H
33

4+
#define __STDC_LIMIT_MACROS
45
#include <stdint.h>
56

67
enum dbg_lvl_t : uint32_t {
@@ -12,7 +13,7 @@ enum dbg_lvl_t : uint32_t {
1213
EXTEND_COMPOUND = 16,
1314
EXTEND_COMPLEX = 32,
1415
LCS = 64,
15-
EXTEND_OBJECT = 128,
16+
EXTEND_OBJECT = 128,
1617
ALL = UINT32_MAX
1718
};
1819

0 commit comments

Comments
 (0)