Fixed Solaris-gcc errors and added splay trees

[SVN r40428]
This commit is contained in:
Ion Gaztañaga
2007-10-24 18:59:26 +00:00
parent 28befc2384
commit 40835daaba
18 changed files with 6643 additions and 990 deletions

View File

@@ -44,7 +44,10 @@ struct has_pointer_plus_bit<void*, N>
//!has_pointer_plus_bit<>::value is non-zero can make use of these
//!operations to embed the bit in the pointer.
template<class Pointer>
struct pointer_plus_bit;
struct pointer_plus_bit
{
static const bool value = false;
};
//!This is the specialization to embed an extra bit of information
//!in a raw pointer. The extra bit is stored in the lower bit of the pointer.