I was reading through the C++03 standard and noticed the usage of "Clause 10". Example:
8.5.1 Aggregates [dcl.init.aggr]
- An aggregate is an array or a class (clause 9) with no user-declared constructors (12.1), no private or protected non-static data members (clause 11), no base classes (clause 10), and no virtual functions (10.3).
There is also Clause 9 and Clause 11. What does this mean, is it referring to some other section in the standard?