[Bug 282515] www/davix: fix build with clang 19

From: <bugzilla-noreply_at_freebsd.org>
Date: Sun, 03 Nov 2024 14:32:19 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=282515

            Bug ID: 282515
           Summary: www/davix: fix build with clang 19
           Product: Ports & Packages
           Version: Latest
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Some People
          Priority: ---
         Component: Individual Port(s)
          Assignee: yuri@freebsd.org
          Reporter: dim@FreeBSD.org
             Flags: maintainer-feedback?(yuri@freebsd.org)
          Assignee: yuri@freebsd.org

Clang 19 has become more strict about assigning to const class members,
resulting in errors similar to:

 
/wrkdirs/usr/ports/www/davix/work/davix-R_0_8_7/src/libs/rapidjson/document.h:319:82:
error: cannot assign to non-static data member 'length' with const-qualified
type 'const SizeType' (aka 'const unsigned int')
    319 |     GenericStringRef& operator=(const GenericStringRef& rhs) { s =
rhs.s; length = rhs.length; }
        |                                                                      
    ~~~~~~ ^
 
/wrkdirs/usr/ports/www/davix/work/davix-R_0_8_7/src/libs/rapidjson/document.h:325:20:
note: non-static data member 'length' declared const here
    325 |     const SizeType length; //!< length of the string (excluding the
trailing NULL terminator)
        |     ~~~~~~~~~~~~~~~^~~~~~

Upstream rapidjson has fixed this in commit 3b2441b8 [1], which simply
removes the assignment operator.

[1] https://github.com/Tencent/rapidjson/commit/3b2441b8

-- 
You are receiving this mail because:
You are the assignee for the bug.