Skip to content

Commit 4e10934

Browse files
committed
src: fix use-before-def compiler warning
Include the right header file to get the definition of Calloc(), not just its declaration.
1 parent 482b56a commit 4e10934

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/aliased_buffer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
55

66
#include "v8.h"
7-
#include "util.h"
7+
#include "util-inl.h"
88

99
namespace node {
1010

0 commit comments

Comments
 (0)