Commit 5dfae29b by Bill Wendling Committed by Mike Stump

p11144.C: Renamed id to ID because id is an OjbC keyword.

2006-12-18  Bill Wendling  <wendling@apple.com>

       * g++.old-deja/g++.mike/p11144.C: Renamed id to ID because
       id is an OjbC keyword.

From-SVN: r120033
parent eff4af7e
2006-12-18 Bill Wendling <wendling@apple.com>
* g++.old-deja/g++.mike/p11144.C: Renamed id to ID because
id is an OjbC keyword.
2006-12-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 2006-12-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* gcc.dg/torture/builtin-pow-mpfr-1.c: New test. * gcc.dg/torture/builtin-pow-mpfr-1.c: New test.
...@@ -7,9 +7,9 @@ public: ...@@ -7,9 +7,9 @@ public:
int d_i; int d_i;
Id(int i) : d_i(i) {} Id(int i) : d_i(i) {}
int value() {return d_i;} int value() {return d_i;}
} id(1); } ID(1);
Id foo() { return id; } Id foo() { return ID; }
int main() { int main() {
const Id &id1 = foo(); const Id &id1 = foo();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment