FreeBSD Bugzilla – Attachment 211187 Details for
Bug 243310
graphics/silgraphite: Fails to build on 13.0-CURRENT: /usr/include/c++/v1/type_traits:3699:9: error: no mathing constructor for initialization of 'gr3:ooo::Segment'
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
silgraphite - fix Segment.cpp
silgraphite.diff (text/plain), 848 bytes, created by
Lorenzo Salvadore
on 2020-01-30 11:10:31 UTC
(
hide
)
Description:
silgraphite - fix Segment.cpp
Filename:
MIME Type:
Creator:
Lorenzo Salvadore
Created:
2020-01-30 11:10:31 UTC
Size:
848 bytes
patch
obsolete
>Index: graphics/silgraphite/files/patch-openoffice-silgraphite >=================================================================== >--- graphics/silgraphite/files/patch-openoffice-silgraphite (revision 522170) >+++ graphics/silgraphite/files/patch-openoffice-silgraphite (working copy) >@@ -1550,6 +1550,18 @@ > > // m_psstrm = NULL; > m_prgslout = NULL; >+@@ -575,7 +577,10 @@ void Segment::SwapWith(Segment * pgrseg) >+ int crefThis = m_cref; >+ int crefOther = pgrseg->m_cref; >+ >+- std::swap(*this, *pgrseg); >++ //std::swap(*this, *pgrseg); >++ Segment tmp = *this; >++ *this = *pgrseg; >++ *pgrseg = tmp; >+ >+ m_cref = crefThis; >+ pgrseg->m_cref = crefOther; > @@ -1178,7 +1180,7 @@ LineBrk Segment::getBreakWeight(int ich, > part of the segment. > ----------------------------------------------------------------------------------------------*/
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Flags:
salvadore
:
maintainer-approval?
(
sunpoet
)
Actions:
View
|
Diff
Attachments on
bug 243310
:
210682
| 211187 |
211220