mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-10 07:11:54 +00:00
Fixed 64 Bit issue in patch.h, see http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=1109
for details git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@105 8a3a26a2-13c4-0310-b231-cf6edde360e5
This commit is contained in:
parent
8a61657fc4
commit
896d2a255a
2 changed files with 7 additions and 1 deletions
5
CHANGES
5
CHANGES
|
@ -1,6 +1,11 @@
|
|||
This is the changelog for developers, != changelog for the end user
|
||||
that we distribute with the binaries. (see changelog)
|
||||
|
||||
12/09/2006
|
||||
namespace
|
||||
- Fixed 64 Bit issue in patch.h, see http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=1109
|
||||
for details
|
||||
|
||||
11/09/2006
|
||||
namespace
|
||||
- Fixed unnecessary warnings, see http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=1108
|
||||
|
|
|
@ -43,6 +43,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|||
#include "debugging/debugging.h"
|
||||
|
||||
#include <set>
|
||||
#include <limits>
|
||||
|
||||
#include "math/frustum.h"
|
||||
#include "string/string.h"
|
||||
|
@ -115,7 +116,7 @@ struct BezierCurve
|
|||
Vector3 right;
|
||||
};
|
||||
|
||||
const std::size_t BEZIERCURVETREE_MAX_INDEX = 1 << ((sizeof(std::size_t) * 8) - 1);
|
||||
const std::size_t BEZIERCURVETREE_MAX_INDEX = std::numeric_limits<unsigned int>::max() / 2 + 1;
|
||||
|
||||
struct BezierCurveTree
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue