summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2012-12-09 17:47:12 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2012-12-09 17:47:12 +0000
commit73757314318cbade1c38d06e75efd36d0357c500 (patch)
treeaee93816cfce6b7c93b71a079143d49894b72564
parentba575159f6ae78a5353bd1408fed843ea8089e98 (diff)
downloadswig-73757314318cbade1c38d06e75efd36d0357c500.tar.gz
Perl - Fix C++ comment in C wrappers.
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@13951 626c5289-ae23-0410-ae9c-e8d60b6d4f22
-rw-r--r--CHANGES.current3
-rw-r--r--Lib/perl5/perlinit.swg2
2 files changed, 4 insertions, 1 deletions
diff --git a/CHANGES.current b/CHANGES.current
index 8b5ed3a6a..b0aee7e75 100644
--- a/CHANGES.current
+++ b/CHANGES.current
@@ -5,6 +5,9 @@ See the RELEASENOTES file for a summary of changes in each release.
Version 2.0.9 (in progress)
===========================
+2012-12-08: wsfulton
+ [Perl] Fix bug #3571361 - C++ comment in C wrappers.
+
2012-11-28: kwwette
[Octave] Simplified module loading: now just the syntax
$ example;
diff --git a/Lib/perl5/perlinit.swg b/Lib/perl5/perlinit.swg
index af9a35a98..d9ffa9bf8 100644
--- a/Lib/perl5/perlinit.swg
+++ b/Lib/perl5/perlinit.swg
@@ -33,7 +33,7 @@ XS(SWIG_init) {
/* Install commands */
for (i = 0; swig_commands[i].name; i++) {
- // Casts only needed for Perl < 5.10.
+ /* Casts only needed for Perl < 5.10. */
#ifdef __cplusplus
newXS(const_cast<char*>(swig_commands[i].name), swig_commands[i].wrapper, const_cast<char*>(__FILE__));
#else