View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0001404 | OpenFOAM | Bug | public | 2014-09-26 17:14 | 2014-10-30 12:34 |
Reporter | Assigned To | will | |||
Priority | normal | Severity | major | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Platform | Linux | OS | Ubuntu | OS Version | 10.04 |
Summary | 0001404: some mistakes of source code | ||||
Description | file:error.C line:131 error Foam::error::operator OSstream&() ok Foam::error::operator Foam::OSstream&() will lead to compile error line:145 error Foam::error::operator dictionary() const ok Foam::error::operator Foam::dictionary() const will lead to compile error file:messageStream.C should add #include "OFstream.H", otherwise Snull is not define file:IOobject.C line:51 error bool Foam::IOobject::IOobject::fileNameComponents ok bool Foam::IOobject::fileNameComponents will lead to compile error file:triad.C line:375 error Foam::triad::operator Foam::quaternion() const ok Foam::triad::operator Foam::quaternion() const will lead to compile error | ||||
Tags | No tags attached. | ||||
|
Wow, our compilers are remarkably tolerant not to have complained about these. Thanks for the report. I've fixed the typos in commit 1b4050793e9968c0a21a40f2d198e0d180762949. The OFstream include wasn't added as messageStream.C isn't compiled directely. It is included into global.Cver, which does have the necessary include. |