|
From: <kin...@us...> - 2025-09-22 20:40:07
|
Revision: 7468
http://sourceforge.net/p/teem/code/7468
Author: kindlmann
Date: 2025-09-22 20:40:04 +0000 (Mon, 22 Sep 2025)
Log Message:
-----------
comment tweaks
Modified Paths:
--------------
teem/trunk/src/air/air.h
teem/trunk/src/hest/hest.h
Modified: teem/trunk/src/air/air.h
===================================================================
--- teem/trunk/src/air/air.h 2025-09-22 20:35:11 UTC (rev 7467)
+++ teem/trunk/src/air/air.h 2025-09-22 20:40:04 UTC (rev 7468)
@@ -454,7 +454,7 @@
/* changes for for TeemV2:
*** airParseStrT() are no longer var-args; it was a mistaken way to enforce uniformity
- * across parsers for different types, and it was really only airParseStrE (for
+ * across parsers for different types, but it was really only airParseStrE (for
* parsing airEnum values) that needed it. Then airParseStrS sneakily used it for
* its final "greedy" argument, which was also a bad idea to overcome bad ideas in
* hestParse(), which have since been fixed with its 2025 re-write.
@@ -475,8 +475,8 @@
* const char airTypeStr[HEST_TYPE_MAX + 1][AIR_STRLEN_SMALL + 1] --> _hestTypeStr
* const size_t airTypeSize[HEST_TYPE_MAX + 1] --> _hestTypeSize
* unsigned int (*const airParseStr[AIR_TYPE_MAX + 1])(void *,
- const char *, *const char *,
- *unsigned int);
+ * const char *, *const char *,
+ * *unsigned int);
* --> _hestParseStr
*/
/* parseAir.c */
Modified: teem/trunk/src/hest/hest.h
===================================================================
--- teem/trunk/src/hest/hest.h 2025-09-22 20:35:11 UTC (rev 7467)
+++ teem/trunk/src/hest/hest.h 2025-09-22 20:40:04 UTC (rev 7468)
@@ -50,11 +50,11 @@
* The blissfully-type-unaware hestOptAdd() has always relied on the airTypeT enum values
* below. Since that function is not being removed, to avoid needless code breakage with
* TeemV2, these values now live in this hest header. hest users should instead be using
- * the properly typed hestOptAdd_X_T functions, which have no need for airType
+ * one of the 99 properly typed hestOptAdd_X_T functions, which have no need for airType
* pseudo-types.
*
* Other things that used to be in air, but which really only mattered to implement hest
- * functions have been moved into privateHest.h, but with air --> hest renaming.
+ * functions have been moved into privateHest.h, but with air --> _hest renaming:
* #define AIR_TYPE_MAX
* const char airTypeStr[AIR_TYPE_MAX + 1][AIR_STRLEN_SMALL + 1];
* const size_t airTypeSize[AIR_TYPE_MAX + 1];
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|