diff options
| author | Robin Krahl <me@robin-krahl.de> | 2018-07-05 20:13:08 +0200 | 
|---|---|---|
| committer | Robin Krahl <me@robin-krahl.de> | 2018-07-05 20:13:08 +0200 | 
| commit | 09eaadc5d3d2a13a094210eedafee023774914c6 (patch) | |
| tree | e031e0c7472ed3816b8f083208cd16cdf5ff6c05 | |
| parent | 494f5b3c285bf4b42c57e85f3b7b7e26620378e8 (diff) | |
| download | libnitrokey-09eaadc5d3d2a13a094210eedafee023774914c6.tar.gz libnitrokey-09eaadc5d3d2a13a094210eedafee023774914c6.tar.bz2 | |
Replace deprecated attribute in C API with a comment
Attribute specifiers are a C++-only feature.  Therefore this patch
removes the [[deprecated(...)]] attribute from the NK_totp_get_time
method in NK_C_API.h and replaces it with a comment.
| -rw-r--r-- | NK_C_API.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -417,7 +417,7 @@ extern "C" {  	 */  	NK_C_API int NK_totp_set_time_soft(uint64_t time); -  [[deprecated("NK_totp_get_time is deprecated -- use NK_totp_set_time_soft instead")]] +	// NK_totp_get_time is deprecated -- use NK_totp_set_time_soft instead  	NK_C_API int NK_totp_get_time();  	//passwords | 
