add doxygen anchors to avoid warnings.
--- a/src/core/boolean.h Wed Apr 09 12:15:24 2008 -0700
+++ b/src/core/boolean.h Wed Apr 09 13:03:58 2008 -0700
@@ -28,6 +28,8 @@
/**
* \brief Hold a bool native type
*
+ * \anchor bool
+ *
* This class can be used to hold bool variables
* which must go through the Attribute system.
*/
--- a/src/core/double.h Wed Apr 09 12:15:24 2008 -0700
+++ b/src/core/double.h Wed Apr 09 13:03:58 2008 -0700
@@ -29,6 +29,7 @@
/**
* \brief Hold an floating point type
*
+ * \anchor double
* This class can be used to hold variables of floating point type
* such as 'double' or 'float'. The internal format is 'double'.
*/
--- a/src/core/integer.h Wed Apr 09 12:15:24 2008 -0700
+++ b/src/core/integer.h Wed Apr 09 13:03:58 2008 -0700
@@ -29,6 +29,11 @@
/**
* \brief Hold a signed integer type
*
+ * \anchor int8_t
+ * \anchor int16_t
+ * \anchor int32_t
+ * \anchor int64_t
+ *
* This class can be used to hold variables of signed integer
* type such as int8_t, int16_t, int32_t, int64_t, or,
* int, etc.
--- a/src/core/uinteger.h Wed Apr 09 12:15:24 2008 -0700
+++ b/src/core/uinteger.h Wed Apr 09 13:03:58 2008 -0700
@@ -29,6 +29,11 @@
/**
* \brief Hold an unsigned integer type
*
+ * \anchor uint8_t
+ * \anchor uint16_t
+ * \anchor uint32_t
+ * \anchor uint64_t
+ *
* This class can be used to hold variables of unsigned integer
* type such as uint8_t, uint16_t, uint32_t, uint64_t, or,
* unsigned int, etc.