This commit is contained in:
Frank B. Brokken 2017-01-26 15:37:20 +01:00
parent d3bb7c8a34
commit 314a182a40
3 changed files with 7 additions and 6 deletions

View file

@ -6,6 +6,9 @@ includefile(classtemplates/intro)
subsubsect(Simple Definitions)
includefile(classtemplates/simple)
subsubsect(Explicit Conversions)
includefile(classtemplates/explicit)
lsect(TEMPCLASSDEF)(Defining class templates)
includefile(classtemplates/definitions)

View file

@ -55,10 +55,6 @@ template arguments of class templates.
As long as no pointer is defined template argument of objects of class
templates can be deduced by the compiler. In this case em(simple definitions)
are used. Alternatively, em(explicit type conversions may be specified.
in facilities were considerations also All the above was The upcoming The members of the bf(C++) While preparing for the C++17 standard
are used. Alternatively, em(explicit) type conversions may be specified.

View file

@ -20,4 +20,6 @@ exceptional, though.
Other useful bit-represented types also exists. E.g., ti(uint32_t) is
guaranteed to hold 32-bits unsigned values. Analogously, ti(int32_t) holds
32-bits signed values. Corresponding types exist for 8, 16 and 64 bits
values. These types are defined in the header file ti(cstdint).
values. These types are defined in the header file ti(cstdint) and can be very
useful when you need to specify or use integral value types of fixed sizes.