From 4bcb8ab8c38ac41638378bf47ca7db80cfa8ea3c Mon Sep 17 00:00:00 2001 From: David Rose Date: Tue, 26 Jul 2005 20:15:36 +0000 Subject: [PATCH] commas now required --- direct/src/doc/sample.dc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/direct/src/doc/sample.dc b/direct/src/doc/sample.dc index 63d78b9e7e..ea26024f06 100644 --- a/direct/src/doc/sample.dc +++ b/direct/src/doc/sample.dc @@ -73,7 +73,7 @@ dclass DistributedObjectHolder : DistributedObject { // In addition to fixed-length arrays and unbounded arrays, you can // specify a range for the valid size of the array: - setRelatedObjects(AvatarObject relatedObjects[0, 3 - 5] = []) + setRelatedObjects(AvatarObject relatedObjects[0, 3 - 5] = []); }; // You can specify a default initial value on the typedef, if you