Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/util/util_vector.h
| Show All 17 Lines | |||||
| #define __UTIL_VECTOR_H__ | #define __UTIL_VECTOR_H__ | ||||
| /* Vector */ | /* Vector */ | ||||
| #include <cassert> | #include <cassert> | ||||
| #include <cstring> | #include <cstring> | ||||
| #include <vector> | #include <vector> | ||||
| #include "util_aligned_malloc.h" | #include "util/util_aligned_malloc.h" | ||||
| #include "util_guarded_allocator.h" | #include "util/util_guarded_allocator.h" | ||||
| #include "util_types.h" | #include "util/util_types.h" | ||||
| CCL_NAMESPACE_BEGIN | CCL_NAMESPACE_BEGIN | ||||
| /* Vector | /* Vector | ||||
| * | * | ||||
| * Own subclass-ed vestion of std::vector. Subclass is needed because: | * Own subclass-ed vestion of std::vector. Subclass is needed because: | ||||
| * | * | ||||
| * - Use own allocator which keeps track of used/peak memory. | * - Use own allocator which keeps track of used/peak memory. | ||||
| ▲ Show 20 Lines • Show All 272 Lines • Show Last 20 Lines | |||||