diff --git a/Doc/Manual/Contents.html b/Doc/Manual/Contents.html index 5d532bc50..ada72164b 100644 --- a/Doc/Manual/Contents.html +++ b/Doc/Manual/Contents.html @@ -892,6 +892,7 @@
-void doit( const Vector & ); +void doit( const Vector & ); void doit( int i );
There are multiple ways to wrap pointers to simple types. Given the following C method: -
+
void add( int *in1, int *in2, int *result);
@@ -672,7 +673,7 @@ include("example.php");
$in1 = 3;
$in2 = 5;
$result = 0;
-add(&$in1,&$in2,&$result);
+add(&$in1,&$in2,&$result);
echo "The sum $in1 + $in2 = $result\n";
?>
@@ -726,7 +727,7 @@ struct Complex {
Would be used in the following way:
-
+
<?php
@@ -779,7 +780,7 @@ Complex_im_set($obj,$d);
Complex_im_get($obj);
-24.2.6.2 Constructors and Destructers
+24.2.6.2 Constructors and Destructers
@@ -820,7 +821,7 @@ the programmer can either reassign the variable or call
unset($v)
-24.2.6.2 Static Member Variables
+24.2.6.3 Static Member Variables
@@ -860,7 +861,7 @@ Ko::threats(10);
echo "There has now been " . Ko::threats() . " threats\n";