mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-03 23:39:38 +00:00
Use correct Doxygen trailing comment syntax
This commit is contained in:
parent
ec7e1c93ce
commit
c03e8c224c
@ -29,8 +29,8 @@ typedef struct {
|
|||||||
/** For merge commits, the "mainline" is treated as the parent. */
|
/** For merge commits, the "mainline" is treated as the parent. */
|
||||||
unsigned int mainline;
|
unsigned int mainline;
|
||||||
|
|
||||||
git_merge_options merge_opts; /* Options for the merging */
|
git_merge_options merge_opts; /**< Options for the merging */
|
||||||
git_checkout_options checkout_opts; /* Options for the checkout */
|
git_checkout_options checkout_opts; /**< Options for the checkout */
|
||||||
} git_cherrypick_options;
|
} git_cherrypick_options;
|
||||||
|
|
||||||
#define GIT_CHERRYPICK_OPTIONS_VERSION 1
|
#define GIT_CHERRYPICK_OPTIONS_VERSION 1
|
||||||
|
@ -59,9 +59,9 @@ typedef enum {
|
|||||||
* An entry in a configuration file
|
* An entry in a configuration file
|
||||||
*/
|
*/
|
||||||
typedef struct {
|
typedef struct {
|
||||||
const char *name; /* Name of the entry (normalised) */
|
const char *name; /**< Name of the entry (normalised) */
|
||||||
const char *value; /* String value of the entry */
|
const char *value; /**< String value of the entry */
|
||||||
git_config_level_t level; /* Which config file this was found in */
|
git_config_level_t level; /**< Which config file this was found in */
|
||||||
} git_config_entry;
|
} git_config_entry;
|
||||||
|
|
||||||
typedef int (*git_config_foreach_cb)(const git_config_entry *, void *);
|
typedef int (*git_config_foreach_cb)(const git_config_entry *, void *);
|
||||||
|
@ -29,8 +29,8 @@ typedef struct {
|
|||||||
/** For merge commits, the "mainline" is treated as the parent. */
|
/** For merge commits, the "mainline" is treated as the parent. */
|
||||||
unsigned int mainline;
|
unsigned int mainline;
|
||||||
|
|
||||||
git_merge_options merge_opts; /* Options for the merging */
|
git_merge_options merge_opts; /**< Options for the merging */
|
||||||
git_checkout_options checkout_opts; /* Options for the checkout */
|
git_checkout_options checkout_opts; /**< Options for the checkout */
|
||||||
} git_revert_options;
|
} git_revert_options;
|
||||||
|
|
||||||
#define GIT_REVERT_OPTIONS_VERSION 1
|
#define GIT_REVERT_OPTIONS_VERSION 1
|
||||||
|
Loading…
Reference in New Issue
Block a user