Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 452694
Collapse All | Expand All

(-)blender-2.49b.orig/extern/bullet2/src/BulletSoftBody/btSoftBodyInternals.h (-2 / +2 lines)
Lines 18-23 Link Here
18
#define _BT_SOFT_BODY_INTERNALS_H
18
#define _BT_SOFT_BODY_INTERNALS_H
19
19
20
#include "btSoftBody.h"
20
#include "btSoftBody.h"
21
#include <string.h>
21
22
22
#include "LinearMath/btQuickprof.h"
23
#include "LinearMath/btQuickprof.h"
23
#include "BulletCollision/BroadphaseCollision/btBroadphaseInterface.h"
24
#include "BulletCollision/BroadphaseCollision/btBroadphaseInterface.h"
Lines 171-178 Link Here
171
template <typename T>
172
template <typename T>
172
static inline void			ZeroInitialize(T& value)
173
static inline void			ZeroInitialize(T& value)
173
{
174
{
174
	static const T	zerodummy;
175
	memset(&value,0,sizeof(T));
175
	value=zerodummy;
176
}
176
}
177
//
177
//
178
template <typename T>
178
template <typename T>
(-)blender-2.49b.orig/intern/memutil/MEM_Allocator.h (+1 lines)
Lines 24-29 Link Here
24
#ifndef __MEM_Allocator_h_included__
24
#ifndef __MEM_Allocator_h_included__
25
#define __MEM_Allocator_h_included__ 1
25
#define __MEM_Allocator_h_included__ 1
26
26
27
#include <cstddef>
27
#include "guardedalloc/MEM_guardedalloc.h"
28
#include "guardedalloc/MEM_guardedalloc.h"
28
#include "guardedalloc/BLO_sys_types.h"
29
#include "guardedalloc/BLO_sys_types.h"
29
30

Return to bug 452694