Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
size_t and Rule 3-9-2
#1
Hello,

Rule 3-9-2 states that "typedefs that indicate size and signedness should be used in place of the basic numerical types."

It specifically states that "The basic numerical types of char, int, short, long, float, double and long double should not be used, but specific-length typedefs should be used."

What about size_t? The signedness is known, but the specific-length is not.

Does this code snippet violate 3-9-2?

Code:
std::vector collection(3, 5);

for (std::size_t ii = 0, count = collection.size(); ii < count; ++ii)
{
    processElement(collection[ii]);
}

Thank you for the help,
Mark
<t></t>
Reply
#2
size_t not a basic numerical type as defined by the rule, so the rule does not apply
Posted by and on behalf of
the MISRA C++ Working Group
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)