From 49cfbdb928442267fae6ffd6a24472a35635cffb Mon Sep 17 00:00:00 2001 From: Nina Dzugasova <dzugasova.nina@gmail.com> Date: Tue, 2 Oct 2018 16:11:31 +0200 Subject: [PATCH] Added comment to String constructor. --- src/TNL/String.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/TNL/String.h b/src/TNL/String.h index 0868ac44a4..7716296255 100644 --- a/src/TNL/String.h +++ b/src/TNL/String.h @@ -38,14 +38,15 @@ public: //! Basic constructor String(); - //! Constructor with char pointer - /*! @param prefix_cut_off says length of the prefix that is going to be omitted and - @param sufix_cut_off says the same about sufix. - */ + ////// + /// Constructor with char pointer + /// + /// @param prefix_cut_off says length of the prefix that is going to be omitted and + /// @param sufix_cut_off says the same about sufix. String( const char* c, int prefix_cut_off = 0, int sufix_cut_off = 0 ); - + String( char* c, int prefix_cut_off = 0, int sufix_cut_off = 0 ); -- GitLab