Import Geant4 10.6.0 source tree

This commit is contained in:
Gabriele Cosmo
2019-12-06 15:12:28 +01:00
parent b2a62ae692
commit 5baee230e9
2997 changed files with 141580 additions and 98673 deletions
+5 -5
View File
@@ -31,8 +31,9 @@
#define G4UItokenNum_hh 1
#include "globals.hh"
enum tokenNum
namespace G4UItokenNum
{
enum tokenNum
{
NONE = 0,
IDENTIFIER = 257,
@@ -55,7 +56,6 @@ enum tokenNum
MINUS = 45
};
typedef struct yystype
{
tokenNum type;
@@ -64,7 +64,7 @@ typedef struct yystype
char C;
G4String S;
yystype() : type(NONE), D(0.0), I(0), C(' '), S("")
yystype() : type(tokenNum::NONE), D(0.0), I(0), C(' '), S("")
{
}
G4bool operator==(const yystype& right) const
@@ -86,5 +86,5 @@ typedef struct yystype
*this=right;
}
} yystype;
}
#endif