From 065744546625b9442b08e2da1d0e8504c374b24e Mon Sep 17 00:00:00 2001 From: Denis Blank Date: Thu, 22 Nov 2018 00:49:57 +0100 Subject: [PATCH] Re-enable the deprecation warnings * Ref 815c3d71 --- include/continuable/continuable-primitives.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/continuable/continuable-primitives.hpp b/include/continuable/continuable-primitives.hpp index 42027d5..1a2976b 100644 --- a/include/continuable/continuable-primitives.hpp +++ b/include/continuable/continuable-primitives.hpp @@ -98,8 +98,8 @@ struct exception_arg_t {}; /// to the types specified in the "A Unified Future" proposal /// especially regarding naming types similar. /// -// [[deprecated("The dispatch_error_tag was replaced by exception_arg_t and -// "will be removed in a later major version!")]] +[[deprecated("The dispatch_error_tag was replaced by exception_arg_t and will " + "be removed in a later major version!")]] // typedef exception_arg_t dispatch_error_tag; /// Represents the type that is used as exception type @@ -119,8 +119,8 @@ using exception_t = detail::types::exception_t; /// to the types specified in the "A Unified Future" proposal /// especially regarding naming types similar. /// -// [[deprecated("The error_type was replaced by exception_t and " -// "will be removed in a later major version!")]] // +[[deprecated("The error_type was replaced by exception_t and will " + "be removed in a later major version!")]] // typedef exception_t error_type; /// \} } // namespace cti