From d291ddd758c16b6cfde096d5d81c60b3ffdb6155 Mon Sep 17 00:00:00 2001 From: Aaron Gokaslan Date: Sat, 16 Jul 2022 11:49:50 -0400 Subject: [PATCH 1/2] Update pybind11 to v2.10.0 --- src/deps/pybind11 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/deps/pybind11 b/src/deps/pybind11 index 914c06fb25..aa304c9c7d 160000 --- a/src/deps/pybind11 +++ b/src/deps/pybind11 @@ -1 +1 @@ -Subproject commit 914c06fb252b6cc3727d0eedab6736e88a3fcb01 +Subproject commit aa304c9c7d725ffb9d10af08a3b34cb372307020 From 58a072720dd50012e4596ad237631a45ee7a37af Mon Sep 17 00:00:00 2001 From: Aaron Gokaslan Date: Sun, 17 Jul 2022 13:50:58 -0400 Subject: [PATCH 2/2] Fix bug in tests --- src/tests/IOTest.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tests/IOTest.cpp b/src/tests/IOTest.cpp index dd757f2632..4ca01e1798 100644 --- a/src/tests/IOTest.cpp +++ b/src/tests/IOTest.cpp @@ -258,6 +258,7 @@ void IOTest::testJsonBuiltinTypes() { // esp::io::addMember/esp::io::readMember and assert equality. void IOTest::testJsonStlTypes() { rapidjson::Document d(rapidjson::kObjectType); + rapidjson::Document::AllocatorType& allocator = d.GetAllocator(); std::string s{"hello world"}; _testJsonReadWrite(s, "s", d);