Import Geant4 10.6.0 source tree
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user