summaryrefslogtreecommitdiff
path: root/include/git2/stash.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/git2/stash.h')
-rw-r--r--include/git2/stash.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/git2/stash.h b/include/git2/stash.h
index 795920ebc..32e6f9576 100644
--- a/include/git2/stash.h
+++ b/include/git2/stash.h
@@ -44,7 +44,7 @@ typedef enum {
* All ignored files are also stashed and then cleaned up from
* the working directory
*/
- GIT_STASH_INCLUDE_IGNORED = (1 << 2),
+ GIT_STASH_INCLUDE_IGNORED = (1 << 2)
} git_stash_flags;
/**
@@ -78,7 +78,7 @@ typedef enum {
/* Try to reinstate not only the working tree's changes,
* but also the index's changes.
*/
- GIT_STASH_APPLY_REINSTATE_INDEX = (1 << 0),
+ GIT_STASH_APPLY_REINSTATE_INDEX = (1 << 0)
} git_stash_apply_flags;
/** Stash apply progression states */
@@ -104,7 +104,7 @@ typedef enum {
GIT_STASH_APPLY_PROGRESS_CHECKOUT_MODIFIED,
/** The stash was applied successfully. */
- GIT_STASH_APPLY_PROGRESS_DONE,
+ GIT_STASH_APPLY_PROGRESS_DONE
} git_stash_apply_progress_t;
/**