You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by ma...@apache.org on 2009/12/12 01:31:09 UTC

svn commit: r889869 - /lucene/lucy/trunk/clownfish/lib/Clownfish/Type/Integer.pm

Author: marvin
Date: Sat Dec 12 00:31:09 2009
New Revision: 889869

URL: http://svn.apache.org/viewvc?rev=889869&view=rev
Log:
Update documentation for Clownfish::Type::Integer to reflect current supported
C integer types.

Modified:
    lucene/lucy/trunk/clownfish/lib/Clownfish/Type/Integer.pm

Modified: lucene/lucy/trunk/clownfish/lib/Clownfish/Type/Integer.pm
URL: http://svn.apache.org/viewvc/lucene/lucy/trunk/clownfish/lib/Clownfish/Type/Integer.pm?rev=889869&r1=889868&r2=889869&view=diff
==============================================================================
--- lucene/lucy/trunk/clownfish/lib/Clownfish/Type/Integer.pm (original)
+++ lucene/lucy/trunk/clownfish/lib/Clownfish/Type/Integer.pm Sat Dec 12 00:31:09 2009
@@ -71,18 +71,26 @@
 =head1 DESCRIPTION
 
 Clownfish::Type::Integer holds integer types of various widths and various
-styles.  A few standard C integer types are supported:
+styles.  Support is limited to a subset of the standard C integer types:
 
+    int8_t
+    int16_t
+    int32_t
+    int64_t
+    uint8_t
+    uint16_t
+    uint32_t
+    uint64_t
     char
     short
     int
     long
     size_t
 
-Many others are not: the types from "inttypes.h", "signed" or "unsigned"
-anything, "long long", "ptrdiff_t", "off_t", etc.  
+Many others are not supported: "signed" or "unsigned" anything, "long long",
+"ptrdiff_t", "off_t", etc.  
 
-Instead, the following Charmonizer typedefs are supported:
+The following Charmonizer typedefs are supported but deprecated:
 
     bool_t
     i8_t