4
0
mirror of https://github.com/QuasarApp/qca.git synced 2025-05-09 01:09:34 +00:00

Do not end Cipher::Mode with a comma.

This solves a build failure with compilers such as GCC 4.2:
/usr/local/include/QtCrypto/qca_basic.h:598: error: comma at end of enumerator list

REVIEW: 122107
This commit is contained in:
Raphael Kubo da Costa 2015-01-17 15:12:03 +02:00
parent 19aeaedd54
commit d4e9444f9d

@ -595,7 +595,7 @@ public:
CFB, ///< operate in %Cipher FeedBack mode
ECB, ///< operate in Electronic Code Book mode
OFB, ///< operate in Output FeedBack Mode
CTR, ///< operate in CounTer Mode
CTR ///< operate in CounTer Mode
};
/**