forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
net-analyzer/ifstatus: Fixed compilation with gcc-6 (bug #594510).
Thanks to Peter Levine for providing the patch. Also bumped ebuild to EAPI-6. Package-Manager: Portage-2.3.5, Repoman-2.3.2
- Loading branch information
Lars Wendler
committed
May 6, 2017
1 parent
3c7bd6c
commit 56cb960
Showing
2 changed files
with
22 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- ifstatus/Interface.h.old 2016-09-27 03:52:02.063811332 -0400 | ||
+++ ifstatus/Interface.h 2016-09-27 03:53:33.305880857 -0400 | ||
@@ -57,7 +57,8 @@ | ||
|
||
InterfaceData & operator=(InterfaceData & rInterfaceData); | ||
InterfaceData operator-(InterfaceData & rInterfaceData); | ||
- | ||
+ InterfaceData & operator=(InterfaceData && rInterfaceData) = default; | ||
+ InterfaceData(const InterfaceData&) = default; | ||
private: | ||
|
||
unsigned long long m_ullReceived[eTotalTypes]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters