diff options
author | joerg <joerg@pkgsrc.org> | 2012-06-29 12:32:23 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2012-06-29 12:32:23 +0000 |
commit | 59be89c7e68efb7e5002bb1af46f92e663b9d118 (patch) | |
tree | 065acc819373f4b7ebedfa0479ea138225855edb /devel | |
parent | 8ba77f5a5b145530914111080d08b53820f9acf7 (diff) | |
download | pkgsrc-59be89c7e68efb7e5002bb1af46f92e663b9d118.tar.gz |
Fix vexing parse errors to declare variable. Add missing implementation
of constructor.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/anjuta/distinfo | 4 | ||||
-rw-r--r-- | devel/anjuta/patches/patch-plugins_symbol-browser_test-class.cpp | 18 | ||||
-rw-r--r-- | devel/anjuta/patches/patch-plugins_symbol-browser_test-class.h | 13 |
3 files changed, 34 insertions, 1 deletions
diff --git a/devel/anjuta/distinfo b/devel/anjuta/distinfo index 07133c6d4e7..7f520c0a50e 100644 --- a/devel/anjuta/distinfo +++ b/devel/anjuta/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.23 2012/05/10 02:47:06 dholland Exp $ +$NetBSD: distinfo,v 1.24 2012/06/29 12:32:23 joerg Exp $ SHA1 (anjuta-2.24.2.tar.bz2) = bcbab37d362f36bf1811bcd5c62c26c4fd31ec3e RMD160 (anjuta-2.24.2.tar.bz2) = 1f1a7b2820b8f7c10e05f7da0a51727f497dcb75 @@ -16,3 +16,5 @@ SHA1 (patch-plugins_project-wizard_file_c) = 8bf6fec58257f00774838f2a5d6e5f2bda4 SHA1 (patch-plugins_project-wizard_header_c) = d4547c7ceef61c498a034a228724b0416b5ab7c8 SHA1 (patch-plugins_project-wizard_parser_c) = ea49775bcda3331bb9c218f3f01f7dd4ed679da0 SHA1 (patch-plugins_project-wizard_property_c) = 3878c5e3edaee349a792f8752035dc4d7b5941d3 +SHA1 (patch-plugins_symbol-browser_test-class.cpp) = bafa51ed1e0308b64f5e9568ab488e6bc2e27211 +SHA1 (patch-plugins_symbol-browser_test-class.h) = f347b16c149810db19c2c1e46377f90359a57790 diff --git a/devel/anjuta/patches/patch-plugins_symbol-browser_test-class.cpp b/devel/anjuta/patches/patch-plugins_symbol-browser_test-class.cpp new file mode 100644 index 00000000000..c1d983f9202 --- /dev/null +++ b/devel/anjuta/patches/patch-plugins_symbol-browser_test-class.cpp @@ -0,0 +1,18 @@ +$NetBSD: patch-plugins_symbol-browser_test-class.cpp,v 1.1 2012/06/29 12:32:23 joerg Exp $ + +--- plugins/symbol-browser/test-class.cpp.orig 2012-06-25 13:38:23.000000000 +0000 ++++ plugins/symbol-browser/test-class.cpp +@@ -10,12 +10,11 @@ typedef struct _faa_1 { + + MyClass *klass; + +- + //klass-> + + int func_test1() { + +- YourClass klass(); ++ YourClass klass; + + + diff --git a/devel/anjuta/patches/patch-plugins_symbol-browser_test-class.h b/devel/anjuta/patches/patch-plugins_symbol-browser_test-class.h new file mode 100644 index 00000000000..fee867475f3 --- /dev/null +++ b/devel/anjuta/patches/patch-plugins_symbol-browser_test-class.h @@ -0,0 +1,13 @@ +$NetBSD: patch-plugins_symbol-browser_test-class.h,v 1.1 2012/06/29 12:32:23 joerg Exp $ + +--- plugins/symbol-browser/test-class.h.orig 2012-06-25 13:40:35.000000000 +0000 ++++ plugins/symbol-browser/test-class.h +@@ -72,7 +72,7 @@ class YourClass { + + + public: +- YourClass (); ++ YourClass () {}; + YourClass (int par1, char* par2); + + void yc_first_function( int par1, char** par2); |