Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
b7791d04
Commit
b7791d04
authored
Jun 16, 2019
by
Edward Thomson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
object: rename git_object__size to git_object_size
We don't use double-underscores in the public API.
parent
fef847ae
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
4 deletions
+12
-4
include/git2/deprecated.h
+2
-0
include/git2/object.h
+1
-1
src/object.c
+9
-3
No files found.
include/git2/deprecated.h
View file @
b7791d04
...
...
@@ -235,6 +235,8 @@ GIT_EXTERN(void) giterr_set_oom(void);
#define GIT_OBJ_OFS_DELTA GIT_OBJECT_OFS_DELTA
#define GIT_OBJ_REF_DELTA GIT_OBJECT_REF_DELTA
GIT_EXTERN
(
size_t
)
git_object__size
(
git_object_t
type
);
/**@}*/
/** @name Deprecated Reference Constants
...
...
include/git2/object.h
View file @
b7791d04
...
...
@@ -197,7 +197,7 @@ GIT_EXTERN(int) git_object_typeisloose(git_object_t type);
* @param type object type to get its size
* @return size in bytes of the object
*/
GIT_EXTERN
(
size_t
)
git_object_
_
size
(
git_object_t
type
);
GIT_EXTERN
(
size_t
)
git_object_size
(
git_object_t
type
);
/**
* Recursively peel an object until an object of the specified type is met.
...
...
src/object.c
View file @
b7791d04
...
...
@@ -75,7 +75,7 @@ int git_object__from_raw(
return
GIT_ENOTFOUND
;
}
if
((
object_size
=
git_object_
_
size
(
type
))
==
0
)
{
if
((
object_size
=
git_object_size
(
type
))
==
0
)
{
git_error_set
(
GIT_ERROR_INVALID
,
"the requested type is invalid"
);
return
GIT_ENOTFOUND
;
}
...
...
@@ -123,7 +123,7 @@ int git_object__from_odb_object(
return
GIT_ENOTFOUND
;
}
if
((
object_size
=
git_object_
_
size
(
odb_obj
->
cached
.
type
))
==
0
)
{
if
((
object_size
=
git_object_size
(
odb_obj
->
cached
.
type
))
==
0
)
{
git_error_set
(
GIT_ERROR_INVALID
,
"the requested type is invalid"
);
return
GIT_ENOTFOUND
;
}
...
...
@@ -316,7 +316,7 @@ int git_object_typeisloose(git_object_t type)
return
(
git_objects_table
[
type
].
size
>
0
)
?
1
:
0
;
}
size_t
git_object_
_
size
(
git_object_t
type
)
size_t
git_object_size
(
git_object_t
type
)
{
if
(
type
<
0
||
((
size_t
)
type
)
>=
ARRAY_SIZE
(
git_objects_table
))
return
0
;
...
...
@@ -550,3 +550,9 @@ bool git_object__is_valid(
return
true
;
}
/* Deprecated functions */
size_t
git_object__size
(
git_object_t
type
)
{
return
git_object_size
(
type
);
}
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