This is an automated email from the ASF dual-hosted git repository.

fokko pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/avro.git


The following commit(s) were added to refs/heads/main by this push:
     new 3761f7dd4a [c++] Fix typo `uint_t->uint8_t` (#3458)
3761f7dd4a is described below

commit 3761f7dd4abf07088cfdb09f9eaeb0ed60624e99
Author: Junwang Zhao <[email protected]>
AuthorDate: Thu Sep 4 23:30:11 2025 +0800

    [c++] Fix typo `uint_t->uint8_t` (#3458)
---
 lang/c++/include/avro/GenericDatum.hh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lang/c++/include/avro/GenericDatum.hh 
b/lang/c++/include/avro/GenericDatum.hh
index a6ce2463ca..1b1c3d9af8 100644
--- a/lang/c++/include/avro/GenericDatum.hh
+++ b/lang/c++/include/avro/GenericDatum.hh
@@ -43,7 +43,7 @@ namespace avro {
  * \li Avro <tt>float</tt> maps to C++ <tt>float</tt>.
  * \li Avro <tt>double</tt> maps to C++ <tt>double</tt>.
  * \li Avro <tt>string</tt> maps to C++ <tt>std::string</tt>.
- * \li Avro <tt>bytes</tt> maps to C++ <tt>std::vector&lt;uint_t&gt;</tt>.
+ * \li Avro <tt>bytes</tt> maps to C++ <tt>std::vector&lt;uint8_t&gt;</tt>.
  * \li Avro <tt>fixed</tt> maps to C++ class <tt>GenericFixed</tt>.
  * \li Avro <tt>enum</tt> maps to C++ class <tt>GenericEnum</tt>.
  * \li Avro <tt>array</tt> maps to C++ class <tt>GenericArray</tt>.

Reply via email to