diff --git a/.ci/get-boost.sh b/.ci/get-boost.sh index 77604b5c30..0bf2244e38 100755 --- a/.ci/get-boost.sh +++ b/.ci/get-boost.sh @@ -72,7 +72,6 @@ git submodule --quiet update --init $GIT_SUBMODULE_OPTS \ libs/ratio \ libs/rational \ libs/regex \ - libs/static_assert \ libs/smart_ptr \ libs/system \ libs/throw_exception \ diff --git a/include/boost/gil/extension/io/tiff/detail/log.hpp b/include/boost/gil/extension/io/tiff/detail/log.hpp index 590886caad..bed9978f9b 100644 --- a/include/boost/gil/extension/io/tiff/detail/log.hpp +++ b/include/boost/gil/extension/io/tiff/detail/log.hpp @@ -45,7 +45,7 @@ class console_log ) { char buf[1000]; - sprintf(buf, fmt, ap); + snprintf(buf, 1000, fmt, ap); std::cout << "error: " << buf << std::endl; } @@ -55,7 +55,7 @@ class console_log ) { char buf[1000]; - sprintf(buf, fmt, ap); + snprintf(buf, 1000, fmt, ap); std::cout << "warning: " << fmt << std::endl; } }; diff --git a/meta/libraries.json b/meta/libraries.json index e87a2fa238..f371366184 100644 --- a/meta/libraries.json +++ b/meta/libraries.json @@ -15,9 +15,10 @@ "Iterators" ], "maintainers": [ - "Stefan Seefeld ", + "Samuel Debionne", + "Pranam Lashkari ", "Mateusz Loskot ", - "Pranam Lashkari " + "Stefan Seefeld " ], "cxxstd": "14" }