questions about cv-qualifier for function and references

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



std(N3126) 8.3.2/1 says that:

Cv-qualified references are ill-formed except when the cv-qualifiers
are introduced through
the use of a typedef (7.1.3) or of a template type argument (14.3), in
which case the cv-qualifiers are ignored.

Why the following code compiled failed on GCC 4.5.0 ?
  template <typename T> void foo (T const &);
  void baz ();
  foo (baz);

while
 template <typename T> void foo (T const &);
 void baz ();
 void Test() {
   foo (baz);
 }

successfully. Really wired.

another question is: what is cv-qualifier reference ? Your guys told me that:
const int &m; is not a cv-qualifier reference. Could you give me an
example on the cv-qualifier reference ? Thanks.


[Index of Archives]     [Linux C Programming]     [Linux Kernel]     [eCos]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [The DWARVES Debugging Tools]     [Yosemite Campsites]     [Yosemite News]     [Linux GCC]

  Powered by Linux