mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Remove shadowed variables from header.
See also http://www.zeroc.com/forums/patches/6336-minor-patch-basicstream-h-remove-shadowed-variables.html Approved by: mentors (implicit)
This commit is contained in:
parent
e31de1153b
commit
0ea2df7e0c
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=372159
2 changed files with 21 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
|||
|
||||
PORTNAME= Ice
|
||||
PORTVERSION= 3.5.1
|
||||
PORTREVISION= 3
|
||||
PORTREVISION= 4
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= http://download.zeroc.com/Ice/3.5/
|
||||
|
||||
|
|
20
devel/ice/files/patch-cpp-include-Ice-Basicstream.h
Normal file
20
devel/ice/files/patch-cpp-include-Ice-Basicstream.h
Normal file
|
@ -0,0 +1,20 @@
|
|||
--- cpp/include/Ice/BasicStream.h.orig 2014-11-04 18:12:19.183757485 +0100
|
||||
+++ cpp/include/Ice/BasicStream.h 2014-11-04 18:13:37.223886887 +0100
|
||||
@@ -964,7 +964,7 @@
|
||||
|
||||
struct InstanceData
|
||||
{
|
||||
- InstanceData(InstanceData* previous) : previous(previous), next(0)
|
||||
+ InstanceData(InstanceData* prev) : previous(prev), next(0)
|
||||
{
|
||||
if(previous)
|
||||
{
|
||||
@@ -1123,7 +1123,7 @@
|
||||
|
||||
struct InstanceData
|
||||
{
|
||||
- InstanceData(InstanceData* previous) : previous(previous), next(0)
|
||||
+ InstanceData(InstanceData* prev) : previous(prev), next(0)
|
||||
{
|
||||
if(previous)
|
||||
{
|
Loading…
Add table
Reference in a new issue