nkzxw / ontl

Automatically exported from code.google.com/p/ontl
0 stars 0 forks source link

Syntax error at nt/string.hxx #3

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What is the expected output? 
    const native_string& operator=(const native_string & s)
    {
      length_ = s.length_;
      maximum_length_ = s.maximum_length_;
      buffer_ = s.buffer_;
      return *this;
    } 

What do you see instead?
    const native_string operator=(const native_string & s)
    {
      length_ = s.length_;
      maximum_length_ = s.maximum_length_;
      buffer_ = s.buffer_;
    }  

Original issue reported on code.google.com by icestudent@gmail.com on 20 Sep 2007 at 8:19

GoogleCodeExporter commented 9 years ago
Resolved at revision [10]

Original comment by icestudent@gmail.com on 20 Sep 2007 at 8:32

GoogleCodeExporter commented 9 years ago

Original comment by icestudent@gmail.com on 20 Sep 2007 at 8:33

GoogleCodeExporter commented 9 years ago

Original comment by icestudent@gmail.com on 6 Sep 2008 at 9:01

GoogleCodeExporter commented 9 years ago

Original comment by icestudent@gmail.com on 10 Sep 2008 at 7:02