Changeset 724 for trunk/testcase/456/globalstatic.cpp
- Timestamp:
- Sep 24, 2003, 8:49:08 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/testcase/456/globalstatic.cpp
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r723 r724 4 4 virtual long GetJavaWrapper(void) 5 5 { 6 static const char *pszFunction = __FUNCTION__;7 return *pszFunction ;6 static const char *pszFunctionMethod = __FUNCTION__; 7 return *pszFunctionMethod; 8 8 } 9 9 }; … … 12 12 int main() 13 13 { 14 static const char *pszFunction = __FUNCTION__;14 static const char *pszFunctionMain = __FUNCTION__; 15 15 foo obj; 16 int rc = obj.GetJavaWrapper() + *pszFunction ;16 int rc = obj.GetJavaWrapper() + *pszFunctionMain; 17 17 return rc; 18 18 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.