Changeset 29d76d4 in git
- Timestamp:
- Oct 25, 2013, 4:08:36 AM (9 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 1ba7d59dde84d122942e10a85da471cf9da64a00
- Parents:
- f80aca589d7b6c3ac3ec8c32b27b8130ea38c6f7
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2013-10-25 04:08:36+02:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2013-10-25 15:09:50+02:00
- Location:
- kernel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/misc.cc
rf80aca5 r29d76d4 25 25 26 26 /* init bins */ 27 28 omBin char_ptr_bin = omGetSpecBin(sizeof(char*));29 27 30 28 /*0 implementation*/ -
kernel/structs.h
rf80aca5 r29d76d4 109 109 #endif 110 110 111 extern omBin char_ptr_bin; 111 class CGlobals 112 { 113 public: 114 static inline const omBin& getCharPtrBin() 115 { 116 static omBin _char_ptr_bin = omGetSpecBin(sizeof(char*)); 117 return _char_ptr_bin; 118 } 119 }; 120 121 #define char_ptr_bin (CGlobals::getCharPtrBin()) 122 112 123 113 124 #endif
Note: See TracChangeset
for help on using the changeset viewer.