# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1672094125 0 # Node ID afd2d900d1e982b3384381fbabb4363937ccec2f # Parent 9d6280f206bdfd7d1a230bc392494c8a0e84dca7 C++: Need to include string.h for strlen() on some platforms. diff -r 9d6280f206bd -r afd2d900d1e9 dw.hpp --- a/dw.hpp Sun Dec 25 16:21:52 2022 +0000 +++ b/dw.hpp Mon Dec 26 22:35:25 2022 +0000 @@ -6,6 +6,7 @@ #ifndef _HPP_DW #define _HPP_DW #include +#include // Attempt to support compilers without nullptr type literal #if __cplusplus >= 201103L