Changeset 301
- Timestamp:
- Jun 5, 2003, 4:54:28 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/testcase/456/simplecpp.cpp
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r300 r301 1 1 class foo 2 2 { 3 char ch; 3 4 public: 5 #ifdef USE_INLINE 4 6 foo() 5 { } 7 { 8 ch = 'k'; 9 } 10 #else 11 foo(); 12 #endif 6 13 }; 14 15 #ifndef USE_INLINE 16 foo::foo() 17 { 18 ch = 'k'; 19 } 20 #endif 7 21 8 22 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.