Minor syntactic change to avoid compiler warning about comma at the end of enum element.

This commit is contained in:
Alden Torres 2015-06-18 14:50:13 -04:00
parent 7edb9eb434
commit 5e2e4bbb01
1 changed files with 2 additions and 1 deletions

View File

@ -58,8 +58,9 @@ namespace libtorrent
storage_mode_sparse,
// internal
internal_storage_mode_compact_deprecated,
internal_storage_mode_compact_deprecated
#ifndef TORRENT_NO_DEPRECATE
, // comma here to avoid compiler warning
storage_mode_compact = internal_storage_mode_compact_deprecated
#endif
};