forked from mikeseven/node-webgl
-
Notifications
You must be signed in to change notification settings - Fork 177
Closed
Labels
Description
There is a missing
#include <limits>in libANGLE's src/libANGLE/HandleAllocator.cpp.
Note that the upstream libANGLE does not have this issue because of #include <mutex> in src/common/debug.h, which indirectly includes limits. The (rather old) version of libANGLE used in this package does not have that.
Not including limits directly is bad practice by upstream, but in any case, this package is broken.
algj