diff options
author | maho <maho@FreeBSD.org> | 2016-01-13 09:53:49 +0800 |
---|---|---|
committer | maho <maho@FreeBSD.org> | 2016-01-13 09:53:49 +0800 |
commit | dbbfb88a6f736b62567e48009e17e7a71370b295 (patch) | |
tree | 8b871bde7f65cf504c6163a9537e96fee07e2a30 /math/octave/files | |
parent | e1aa8804c00f245eec9b44221513cc786077ab74 (diff) | |
download | freebsd-ports-gnome-dbbfb88a6f736b62567e48009e17e7a71370b295.tar.gz freebsd-ports-gnome-dbbfb88a6f736b62567e48009e17e7a71370b295.tar.zst freebsd-ports-gnome-dbbfb88a6f736b62567e48009e17e7a71370b295.zip |
Forgot to add patches, and bump port revision
PR: 201737
Submitted by: you.akira.noda@gmail.com
Also spotted by: stephen@
Diffstat (limited to 'math/octave/files')
-rw-r--r-- | math/octave/files/patch-libinterp-octave-value-ov-classdef.cc | 14 | ||||
-rw-r--r-- | math/octave/files/patch-libinterp-octave-value-ov-classdef.h | 11 |
2 files changed, 25 insertions, 0 deletions
diff --git a/math/octave/files/patch-libinterp-octave-value-ov-classdef.cc b/math/octave/files/patch-libinterp-octave-value-ov-classdef.cc new file mode 100644 index 000000000000..5280dad9cd8c --- /dev/null +++ b/math/octave/files/patch-libinterp-octave-value-ov-classdef.cc @@ -0,0 +1,14 @@ +--- libinterp/octave-value/ov-classdef.cc.orig 2015-07-21 17:05:21.000000000 +0900 ++++ libinterp/octave-value/ov-classdef.cc 2015-07-21 17:05:32.000000000 +0900 +@@ -1937,6 +1937,11 @@ + return true; + } + ++void cdef_object_scalar::mark_as_constructed (const cdef_class& cls) ++{ ++ ctor_list.erase (cls); ++} ++ + handle_cdef_object::~handle_cdef_object (void) + { + #if DEBUG_TRACE diff --git a/math/octave/files/patch-libinterp-octave-value-ov-classdef.h b/math/octave/files/patch-libinterp-octave-value-ov-classdef.h new file mode 100644 index 000000000000..d7c413868baa --- /dev/null +++ b/math/octave/files/patch-libinterp-octave-value-ov-classdef.h @@ -0,0 +1,11 @@ +--- libinterp/octave-value/ov-classdef.h.orig 2015-07-21 17:04:55.000000000 +0900 ++++ libinterp/octave-value/ov-classdef.h 2015-07-21 17:05:32.000000000 +0900 +@@ -438,7 +438,7 @@ + + void mark_as_constructed (void) { ctor_list.clear (); } + +- void mark_as_constructed (const cdef_class& cls) { ctor_list.erase (cls); } ++ void mark_as_constructed (const cdef_class& cls); + + bool is_constructed (void) const { return ctor_list.empty (); } + |