Commit 10863b85 authored by Nina Džugasová's avatar Nina Džugasová Committed by Tomáš Oberhuber
Browse files

Added comment to String constructor.

parent 0d2a9b33
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -41,10 +41,11 @@ public:
   //! Constructor from const char*
   String( const char* str );   

   //! 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,
           int sufix_cut_off = 0 );