From f5bd951f5c9945f236dfae7412e0dcecefb40687 Mon Sep 17 00:00:00 2001 From: Manolo Gouy Date: Mon, 12 Feb 2018 07:18:36 +0000 Subject: Slight rewording of the documentation of types fl_intptr_t and fl_uintptr_t. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12665 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- FL/platform_types.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/FL/platform_types.h b/FL/platform_types.h index 036068b08..226ce5958 100644 --- a/FL/platform_types.h +++ b/FL/platform_types.h @@ -23,14 +23,14 @@ #ifdef FL_DOXYGEN -/** An integral type large enough to store a pointer. +/** An integral type large enough to store a pointer or a long value. A pointer value can be safely cast to fl_intptr_t, and later cast back - to its initial pointer type without changing the pointer's value. + to its initial pointer type without change to the pointer value. A variable of type fl_intptr_t can also store a long int value. */ typedef opaque fl_intptr_t; -/** An unsigned integral type large enough to store a pointer. +/** An unsigned integral type large enough to store a pointer or an unsigned long value. A pointer value can be safely cast to fl_uintptr_t, and later cast back - to its initial pointer type without changing the pointer's value. + to its initial pointer type without change to the pointer value. A variable of type fl_uintptr_t can also store an unsigned long int value. */ typedef opaque fl_uintptr_t; -- cgit v1.2.3