Package: htmlcxx / 0.87-3
Metadata
Package | Version | Patches format |
---|---|---|
htmlcxx | 0.87-3 | 3.0 (quilt) |
Patch series
view the series filePatch | File delta | Description |
---|---|---|
fix gcc 4.6 ftbfs.patch | (download) |
html/tree.h |
2 1 1 - 0 ! |
fix compilation with gcc 4.6 |
reduce linking.patch | (download) |
Makefile.am |
2 1 1 - 0 ! |
do not link htmlcxx against libcss_parser, but have libcss_parser_pp link against it. |
spelling fixes.patch | (download) |
html/uriTests.cc |
2 1 1 - 0 ! |
spelling fixes |
exception decls.patch | (download) |
html/CharsetConverter.cc |
2 1 1 - 0 ! |
remove exception declarations |
fix cpp20 allocator.patch | (download) |
html/tree.h |
16 8 8 - 0 ! |
[patch] fix compiling with c 20 The second parameter in function allocate() was removed in C 20 standard. These changes are backward compatible. Prior standard will use these: * < C 17: pointer allocate( size_type n, const void * hint = 0 ); // (until C 17) * < C 20: T* allocate( std::size_t n ); // (since C 17) * = C 20: [[nodiscard]] constexpr T* allocate( std::size_t n ); |