| 1080 | } |
| 1081 | |
| 1082 | Y_FORCE_INLINE void Flush(TPerTagAllocCounter& parent) { |
| 1083 | AtomicAdd(parent.Size, Size); |
| 1084 | Size = 0; |
| 1085 | AtomicAdd(parent.Count, Count); |
| 1086 | Count = 0; |
| 1087 | Updates = 0; |
| 1088 | } |
| 1089 | }; |
| 1090 | |
| 1091 | static const int DBG_ALLOC_MAX_TAG = 1000; |
nothing calls this directly
no test coverage detected