summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlly Betts <olly@survex.com>2021-03-25 13:28:43 +1300
committerOlly Betts <olly@survex.com>2021-03-26 08:24:12 +1300
commitc78325a82af2b10408f021d1adadf78a1cde9d50 (patch)
tree82156cb91b94b809febf09403da2dbd6e80aa1e8
parenteb8024f18b835a8f4bb79307a5c7fa958b1d92c3 (diff)
downloadswig-c78325a82af2b10408f021d1adadf78a1cde9d50.tar.gz
php: Remove out-dated remark from funcptr example
The function pointers are wrapped as resources not "swig style string pointers".
-rw-r--r--Examples/php/funcptr/runme.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/Examples/php/funcptr/runme.php b/Examples/php/funcptr/runme.php
index 360cda8b8..4590a5cbb 100644
--- a/Examples/php/funcptr/runme.php
+++ b/Examples/php/funcptr/runme.php
@@ -15,7 +15,6 @@ print " SUB(a,b) = ". do_op($a,$b,example::SUB)."\n";
print " MUL(a,b) = ". do_op($a,$b,example::MUL)."\n";
print "Here is what the C callback function objects look like in php\n";
-print "Using swig style string pointers as we need them registered as constants\n";
print " ADD = " . example::ADD . "\n";
print " SUB = " . example::SUB . "\n";
print " MUL = " . example::MUL . "\n";