Minor syntactic change to avoid compiler warning about comma at the end of enum element.
This commit is contained in:
parent
7edb9eb434
commit
5e2e4bbb01
|
@ -58,8 +58,9 @@ namespace libtorrent
|
||||||
storage_mode_sparse,
|
storage_mode_sparse,
|
||||||
|
|
||||||
// internal
|
// internal
|
||||||
internal_storage_mode_compact_deprecated,
|
internal_storage_mode_compact_deprecated
|
||||||
#ifndef TORRENT_NO_DEPRECATE
|
#ifndef TORRENT_NO_DEPRECATE
|
||||||
|
, // comma here to avoid compiler warning
|
||||||
storage_mode_compact = internal_storage_mode_compact_deprecated
|
storage_mode_compact = internal_storage_mode_compact_deprecated
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue