Changes in src/Common/utility.h [2871210:5f2f2d7]
- File:
-
- 1 edited
-
src/Common/utility.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Common/utility.h
r2871210 r5f2f2d7 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu Jul 2 18:04:41201513 // Update Count : 1 612 // Last Modified On : Mon Jun 8 14:43:54 2015 13 // Update Count : 13 14 14 // 15 15 … … 86 86 } 87 87 88 static inline std::string assign_strptr( conststd::string *str ) {88 static inline std::string assign_strptr( std::string *str ) { 89 89 if ( str == 0 ) { 90 90 return ""; … … 97 97 } 98 98 99 template< class T, typename ResultType, ResultType ( T::* memfunc)() >99 template< class T, typename ResultType, ResultType (T::* memfunc)() > 100 100 ResultType dispatch( T *pT ) { 101 101 return (pT->*memfunc)();
Note:
See TracChangeset
for help on using the changeset viewer.