View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0002066 | OpenFOAM | Bug | public | 2016-04-24 21:21 | 2016-04-26 10:58 |
Reporter | Fabio_Bertolotti | Assigned To | henry | ||
Priority | normal | Severity | minor | Reproducibility | always |
Status | closed | Resolution | no change required | ||
Platform | Unix | OS | GNU/Linux Ubuntu 16.04 | OS Version | 16.04 |
Summary | 0002066: Error in flex file | ||||
Description | Small bug, The "work-around" for yywrap() currently implemented: #if YY_FLEX_SUBMINOR_VERSION < 34 assumes that the YY_FLEX_MINOR_VERSION is 5 or lower. On Ubuntu 16.04, the Flex version is 2.6.0, hence the #if is erroneously executed. My fix: #if YY_FLEX_MINOR_VERSION < 6 && YY_FLEX_SUBMINOR_VERSION < 34 (see, for example, src/triSurface/triSurface/interfaces/STL/readSTLASCII.L) Cheers, Fabio | ||||
Tags | No tags attached. | ||||
Date Modified | Username | Field | Change |
---|---|---|---|
2016-04-24 21:21 | Fabio_Bertolotti | New Issue | |
2016-04-24 22:06 | henry | Note Added: 0006169 | |
2016-04-26 10:58 | henry | Status | new => closed |
2016-04-26 10:58 | henry | Assigned To | => henry |
2016-04-26 10:58 | henry | Resolution | open => no change required |
2016-04-26 10:58 | henry | Fixed in Version | => 3.0.x |