Import Geant4 3.2.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-08 16:10:37 +02:00
parent 137e303ecc
commit 36c080dca6
3464 changed files with 119310 additions and 52696 deletions
@@ -10,7 +10,7 @@
* and is not subject to copyright.
*/
/* $Id: scl_string.cc,v 1.3 2000/01/21 13:43:15 gcosmo Exp $ */
/* $Id: scl_string.cc,v 1.4 2001/04/20 19:07:14 gcosmo Exp $ */
#include <scl_string.h>
#include <stdio.h>
@@ -46,7 +46,7 @@ SCLstring::SCLstring (const char * str, int lim)
// check the length
int l;
if (lim && (strlen (str) > lim)) l = lim;
if (lim && (int(strlen (str)) > lim)) l = lim;
else l = strlen (str);
_strBufSize = newBufSize (l);