mirror of
https://git.freebsd.org/ports.git
synced 2025-07-10 13:59:22 -04:00
In order to make room for the up-to-date version of the KDE Desktop and its applications move the KDE Application ports based on Qt4. PR: 225992 Exp-run by: antoine Reviewed by: rakuco, adridg Differential Revision: https://reviews.freebsd.org/D14413
27 lines
864 B
Text
27 lines
864 B
Text
commit 81e17bf1d8514cc4f00191776022ba2e0c935b27
|
|
Author: Tobias C. Berner <tcberner@FreeBSD.org>
|
|
Date: Wed Jul 26 14:31:32 2017 +0200
|
|
|
|
Fix build on FreBSD
|
|
|
|
Summary:
|
|
kross-interpreters/python/cxx/Objects.hxx:1081:15: error: cannot initialize
|
|
a member subobject of type 'int' with an rvalue of type 'nullptr_t'
|
|
, offset( NULL )
|
|
^ ~~~~
|
|
|
|
Reviewers: #freebsd, aspotashev
|
|
|
|
Differential Revision: https://phabricator.kde.org/D6928
|
|
|
|
--- python/cxx/Objects.hxx
|
|
+++ python/cxx/Objects.hxx
|
|
@@ -1078,7 +1078,7 @@ namespace Py
|
|
// TMM: added this seqref ctor for use with STL algorithms
|
|
seqref (Object& obj)
|
|
: s(dynamic_cast< SeqBase<T>&>(obj))
|
|
- , offset( NULL )
|
|
+ , offset( 0 )
|
|
, the_item(s.getItem(offset))
|
|
{}
|
|
~seqref()
|