Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Nicolas Wavrant
ZODB
Commits
03bb2e62
Commit
03bb2e62
authored
Nov 19, 2002
by
Tim Peters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Backport from Zope3: Don't compile bucket_append for flavors of BTree
that don't use it -- gcc complains if you do.
parent
729885f5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
src/BTrees/BucketTemplate.c
src/BTrees/BucketTemplate.c
+9
-2
No files found.
src/BTrees/BucketTemplate.c
View file @
03bb2e62
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
****************************************************************************/
****************************************************************************/
#define BUCKETTEMPLATE_C "$Id: BucketTemplate.c,v 1.4
8 2002/10/05 00:39:56 gvanrossum
Exp $\n"
#define BUCKETTEMPLATE_C "$Id: BucketTemplate.c,v 1.4
9 2002/11/19 19:07:53 tim_one
Exp $\n"
/* Use BUCKET_SEARCH to find the index at which a key belongs.
/* Use BUCKET_SEARCH to find the index at which a key belongs.
* INDEX An int lvalue to hold the index i such that KEY belongs at
* INDEX An int lvalue to hold the index i such that KEY belongs at
...
@@ -175,6 +175,13 @@ Overflow:
...
@@ -175,6 +175,13 @@ Overflow:
return
-
1
;
return
-
1
;
}
}
/* So far, bucket_append is called only by multiunion_m(), so is called
* only when MULTI_INT_UNION is defined. Flavors of BTree/Bucket that
* don't support MULTI_INT_UNION don't call bucket_append (yet), and
* gcc complains if bucket_append is compiled in those cases. So only
* compile bucket_append if it's going to be used.
*/
#ifdef MULTI_INT_UNION
/*
/*
* Append a slice of the "from" bucket to self.
* Append a slice of the "from" bucket to self.
*
*
...
@@ -261,7 +268,7 @@ bucket_append(Bucket *self, Bucket *from, int i, int n,
...
@@ -261,7 +268,7 @@ bucket_append(Bucket *self, Bucket *from, int i, int n,
#endif
#endif
return
0
;
return
0
;
}
}
#endif
/* MULTI_INT_UNION */
/*
/*
** _bucket_set: Assign a value to a key in a bucket, delete a key+value
** _bucket_set: Assign a value to a key in a bucket, delete a key+value
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment