This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/20547] undefined reference to "static const" fields of classes


------- Additional Comments From Hu dot YuehWei at gmail dot com  2005-03-19 18:25 -------
I see.
But why compiler doesn't also make a temporary variable for the constant defined
in a class scope?
Such as following codes:

struct T
{
  static int const a = 3;
};

void
fff(int const &a)
{
}

int
main()
{
  fff(T::a); /* compiler will not make a temporary variable for it. */
  fff(4); /* compiler will make a temporary variable for it. */

  return 0;
}


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |UNCONFIRMED
         Resolution|INVALID                     |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20547


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]