// node.h has some deprecated v8 calls which blow up with warnings #pragma once #ifdef __clang__ #pragma clang system_header #include #elif __GNUC__ #pragma GCC system_header #include #elif _MSC_VER #pragma warning(push, 0) #include #pragma warning(pop) #else #include #endif