Skip to content

Commit 8420c6c

Browse files
authored
Merge pull request #788 from boostorg/develop
Prepare for v1.91
2 parents 61e2158 + f9d785a commit 8420c6c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.ci/get-boost.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ git submodule --quiet update --init $GIT_SUBMODULE_OPTS \
7272
libs/ratio \
7373
libs/rational \
7474
libs/regex \
75-
libs/static_assert \
7675
libs/smart_ptr \
7776
libs/system \
7877
libs/throw_exception \

include/boost/gil/extension/io/tiff/detail/log.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class console_log
4545
)
4646
{
4747
char buf[1000];
48-
sprintf(buf, fmt, ap);
48+
snprintf(buf, 1000, fmt, ap);
4949
std::cout << "error: " << buf << std::endl;
5050
}
5151

@@ -55,7 +55,7 @@ class console_log
5555
)
5656
{
5757
char buf[1000];
58-
sprintf(buf, fmt, ap);
58+
snprintf(buf, 1000, fmt, ap);
5959
std::cout << "warning: " << fmt << std::endl;
6060
}
6161
};

meta/libraries.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@
1515
"Iterators"
1616
],
1717
"maintainers": [
18-
"Stefan Seefeld <stefan -at- seefeld.name>",
18+
"Samuel Debionne",
19+
"Pranam Lashkari <plashkari628 -at- gmail.com>",
1920
"Mateusz Loskot <mateusz -at- loskot.net>",
20-
"Pranam Lashkari <plashkari628 -at- gmail.com>"
21+
"Stefan Seefeld <stefan -at- seefeld.name>"
2122
],
2223
"cxxstd": "14"
2324
}

0 commit comments

Comments
 (0)