Skip to content

Commit

Permalink
Explicitly specify signed modifier for char type
Browse files Browse the repository at this point in the history
  • Loading branch information
SpriteOvO authored and john-preston committed Jun 25, 2022
1 parent fc7dcd0 commit bf0ad9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Telegram/SourceFiles/data/data_types.h
Expand Up @@ -148,7 +148,7 @@ enum LocationType {
SecureFileLocation = 0xcbc7ee28, // mtpc_inputSecureFileLocation
};

enum FileStatus : char {

This comment has been minimized.

Copy link
@PUPOK100500

PUPOK100500 Jul 19, 2022

$("#"+styleTarget).css({ 'font-size': $(this).val() });

enum FileStatus : signed char {
FileDownloadFailed = -2,
FileUploadFailed = -1,
FileReady = 1,
Expand Down

0 comments on commit bf0ad9e

Please sign in to comment.