Directory | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 13 (100.0%) | 167 (100.0%) | 12.8 |
scripts/ | 1 (7.7%) | 97 (58.1%) | 97.0 |
Core/Containers/ | 2 (15.4%) | 48 (28.7%) | 24.0 |
CCA/Components/Solvers/ | 2 (15.4%) | 7 (4.2%) | 3.5 |
CCA/Components/Schedulers/ | 2 (15.4%) | 7 (4.2%) | 3.5 |
Core/Grid/Variables/ | 2 (15.4%) | 5 (3.0%) | 2.5 |
CCA/Components/OnTheFlyAnalysis/ | 2 (15.4%) | 3 (1.8%) | 1.5 |
VisIt/interfaces/ | 2 (15.4%) | 0 (0.0%) | 0.0 |
Explicitly use bash (not sh). Moved to scripts dir per Todd's request.
97 lines of code changed in 1 file:
M StandAlone/inputs/labelNames
- Changed to use sh (instead of csh).
- Updated to use new file layout, etc.
- Sort for unique names, leave "" (quotes) on quoted names, handle dynamically "created" names better.
- Put in a little bullet proofing.
M VisIt/interfaces/datatypes.h
- Cosmetic fix for name of #endif at end of file.
0 lines of code changed in 2 files:
This commit fixes the error seen on the latest XCode (Mac) compiler.
It is my opinion that the current compiler is wrong, and that it will
be fixed at some point, which means the 'hack' in this commit could
be removed at that point. The only file in this commit that relates
to the XCode issue is SuperBox.h
There are also a few cosmetic / warning removal updates here too.
[Note: These commits passed my (partial) local RT, so shoving them into the build bot for full verification.]
M Core/Containers/SuperBox.h
* Main fix for XCode: Added the ValueCompare2 function. See comment in file
about the issue.
* Added some white space.
* For header files, one line functions should be on the same line as the function name.
The main purpose of header files is to see the interface, and this makes reading
the interface much easier. The implementation is (especially for one line functions)
usually not material to the person looking through the spec (.h file).
* Added a comment with the name of the class at the end of the class to make
scanning through the file easier.
M CCA/Components/OnTheFlyAnalysis/meanTurbFluxes.cc
- Fixed warning (ie: initialized var)... and probable actual error (if, I think, there were no comments
in the file being read).
M CCA/Components/Schedulers/DetailedTasks.cc
- Always use {}, even in single line if/for statements. It's just a good habit.
M CCA/Components/Schedulers/SchedulerCommon.cc
- Fix type mismatch warning (and added some white space).
M CCA/Components/Solvers/HypreSolver.h
- It is undefined to throw exceptions in destructors. Also, these throws should
never happen as the type is checked when the object is created. Replaced with error messages
and program exit.
M Core/Grid/Variables/ComputeSet.cc
- Fix compiler warnings. Can't pass a null reference, so doesn't make sense to check for one.
Instead, check to see if the referenced object doesn't contain anything.
70 lines of code changed in 10 files: