From 89a6981fc5cb14adcb2a4e06368e386bc769c49b Mon Sep 17 00:00:00 2001 From: "Alkenso (Vladimir Vashurkin)" Date: Sat, 3 Aug 2019 03:00:51 +0300 Subject: [PATCH] Style fixes --- include/asenum/asenum.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/include/asenum/asenum.h b/include/asenum/asenum.h index 175fb82..a3948e1 100644 --- a/include/asenum/asenum.h +++ b/include/asenum/asenum.h @@ -79,6 +79,7 @@ namespace asenum /** Creates AsEnum instance of specific case. + @param value Value related to specified enum case. @return AsEnum instance holding value of specified case. */ @@ -87,6 +88,7 @@ namespace asenum /** Creates AsEnum instance of specific case with 'void' associated type. + @return AsEnum instance holding value of specified case. */ template , void>::value>::type> @@ -103,7 +105,6 @@ namespace asenum template bool isCase() const; -//#error add example /** Unwraps AsEnum and provides access to value that it holds. @@ -114,10 +115,8 @@ namespace asenum template bool ifCase(const Handler& handler) const; -//#error add example /** Performs switch-like action allowing to wotk with values of different cases. - */ details::AsSwitch> doSwitch() const;