Unverified Commit f45ff6c9 by Josh Triplett Committed by GitHub

Omit trailing comma on enum

To accommodate less capable compilers.

Co-authored-by: Peter Pettersson <85582231+boretrk@users.noreply.github.com>
parent 94cb060c
...@@ -30,7 +30,7 @@ typedef enum { ...@@ -30,7 +30,7 @@ typedef enum {
* exist. When using this flag, you may wish to manually call * exist. When using this flag, you may wish to manually call
* `git_odb_refresh` before processing a batch of objects. * `git_odb_refresh` before processing a batch of objects.
*/ */
GIT_ODB_LOOKUP_NO_REFRESH = (1 << 0), GIT_ODB_LOOKUP_NO_REFRESH = (1 << 0)
} git_odb_lookup_flags_t; } git_odb_lookup_flags_t;
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment