Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/tag.h
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2010-09-19 04:21:06 +0400
committerVicent Marti <tanoku@gmail.com>2010-09-19 04:21:06 +0400
commitf49a2e4981d747f96246bc0c8e75e618419f4eee (patch)
treecae3615bb5d0f94a4ac7dadbb53fbe20f4a52c8f /src/tag.h
parenta7a7ddbe0f097923feb9ed31502857891e02824f (diff)
Give object structures more descriptive names
The 'git_obj' structure is now called 'git_rawobj', since it represents a raw object read from the ODB. The 'git_repository_object' structure is now called 'git_object', since it's the base object class for all objects. Signed-off-by: Vicent Marti <tanoku@gmail.com>
Diffstat (limited to 'src/tag.h')
-rw-r--r--src/tag.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tag.h b/src/tag.h
index df03e2ad1..6d9cd8232 100644
--- a/src/tag.h
+++ b/src/tag.h
@@ -5,9 +5,9 @@
#include "repository.h"
struct git_tag {
- git_repository_object object;
+ git_object object;
- git_repository_object *target;
+ git_object *target;
git_otype type;
char *tag_name;
git_person *tagger;