diff options
| author | Brandon Williams <bmwill@google.com> | 2018-02-14 10:59:24 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2018-02-14 13:10:05 -0800 |
| commit | debca9d2fe784193dc2d9f98b5edac605ddfefbb (patch) | |
| tree | 080b732db21d1233d150c64311b9a013fb6aa200 /object.h | |
| parent | object_info: change member name from 'typename' to 'type_name' (diff) | |
| download | git-debca9d2fe784193dc2d9f98b5edac605ddfefbb.tar.gz git-debca9d2fe784193dc2d9f98b5edac605ddfefbb.zip | |
object: rename function 'typename' to 'type_name'
Rename C++ keyword in order to bring the codebase closer to being able
to be compiled with a C++ compiler.
Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'object.h')
| -rw-r--r-- | object.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -53,7 +53,7 @@ struct object { struct object_id oid; }; -extern const char *typename(unsigned int type); +extern const char *type_name(unsigned int type); extern int type_from_string_gently(const char *str, ssize_t, int gentle); #define type_from_string(str) type_from_string_gently(str, -1, 0) |
