From 09eaadc5d3d2a13a094210eedafee023774914c6 Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Thu, 5 Jul 2018 20:13:08 +0200 Subject: 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. --- NK_C_API.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'NK_C_API.h') diff --git a/NK_C_API.h b/NK_C_API.h index ecfab1a..34d8733 100644 --- a/NK_C_API.h +++ b/NK_C_API.h @@ -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 -- cgit v1.2.1 From 17ba7cbbfd6ea5c92d5a5df460751c599e65c9f3 Mon Sep 17 00:00:00 2001 From: Szczepan Zalega Date: Sat, 7 Jul 2018 20:57:14 +0200 Subject: Add general DEPRECATED macro for marking deprecated functions. Signed-off-by: Szczepan Zalega --- NK_C_API.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'NK_C_API.h') diff --git a/NK_C_API.h b/NK_C_API.h index 34d8733..84c8296 100644 --- a/NK_C_API.h +++ b/NK_C_API.h @@ -25,6 +25,8 @@ #include #include +#include "deprecated.h" + #ifdef _MSC_VER #define NK_C_API __declspec(dllexport) #else @@ -418,6 +420,7 @@ extern "C" { NK_C_API int NK_totp_set_time_soft(uint64_t time); // NK_totp_get_time is deprecated -- use NK_totp_set_time_soft instead + DEPRECATED NK_C_API int NK_totp_get_time(); //passwords -- cgit v1.2.1