Skip to content
Snippets Groups Projects
Commit b1e2b439 authored by Petteri Aimonen's avatar Petteri Aimonen
Browse files

Fix build warning in docs

parent 10828b17
No related branches found
No related tags found
No related merge requests found
......@@ -150,7 +150,7 @@ Most Protocol Buffers datatypes have directly corresponding C datatypes, such as
2) If there is a special option *(nanopb).max_size* specified in the .proto file, string maps to null-terminated char array and bytes map to a structure containing a char array and a size field.
3) If *(nanopb).fixed_length* is set to *true* and *(nanopb).max_size* is also set, then bytes map to an inline byte array of fixed size.
4) If there is a special option *(nanopb).max_count* specified on a repeated field, it maps to an array of whatever type is being repeated. Another field will be created for the actual number of entries stored.
4) If *(nanopb).fixed_count* is set to *true* and *(nanopb).max_count* is also set, the field for the actual number of entries will not by created as the count is always assumed to be max count.
5) If *(nanopb).fixed_count* is set to *true* and *(nanopb).max_count* is also set, the field for the actual number of entries will not by created as the count is always assumed to be max count.
=============================================================================== =======================
field in .proto autogenerated in .h
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment