Skip to content

Commit 305813b

Browse files
committed
deps: fix V8 build failures by adding climits include
Add explicit #include <climits> to memcopy.h to fix build failures caused by recent GCC/Clang versions removing transient inclusions of the climits header. Fixes compilation errors when using newer toolchain versions.
1 parent a159b57 commit 305813b

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

deps/v8/src/base/memcopy.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#ifndef V8_BASE_MEMCOPY_H_
66
#define V8_BASE_MEMCOPY_H_
77

8+
#include <climits>
89
#include <stdlib.h>
910

1011
#include <atomic>

0 commit comments

Comments
 (0)