This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch main in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=c729dea1e0af319ca48d2342c530e27a51d372d9 commit c729dea1e0af319ca48d2342c530e27a51d372d9 Author: Guillem Jover <[email protected]> AuthorDate: Sun Aug 21 02:05:58 2022 +0200 doc: Require POSIX.1-2008 This version of POSIX is old enough, and should be supported by all major target operating systems that are still maintained, where dpkg is being ported to. --- doc/coding-style.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/coding-style.txt b/doc/coding-style.txt index a1259a64d..536e5ca3c 100644 --- a/doc/coding-style.txt +++ b/doc/coding-style.txt @@ -83,6 +83,8 @@ The C++ code base assumes C++03, plus the following C++11 extension: + Null pointer keyword (nullptr). +The code base assumes a POSIX.1-2008 compatible environment. + The required features are checked at build time, and it will either use compatibility code in case the needed extensions are not supported and it is possible to support them, otherwise it will abort in case a needed one -- Dpkg.Org's dpkg

