Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 29 (100.0%) | 52 (100.0%) | 1.7 |
jsutherland | 6 (20.7%) | 35 (67.3%) | 5.8 |
jas | 16 (55.2%) | 8 (15.4%) | 0.5 |
qymeng | 5 (17.2%) | 7 (13.5%) | 1.4 |
dav | 2 (6.9%) | 2 (3.8%) | 1.0 |
Fixed a problem when using non-static version of debugstream on previous commit.
0 lines of code changed in 2 files:
Move DebugBuf inside DebugStream class so that it can be initialized together with DebugStream.
7 lines of code changed in 3 files:
Fixes for Mac OSX Lion... it is the same as SNOW LEOPARD, but because
the os version number was incremented, we need to check for that.
(Note, a fix was at one point committed for this in 'configure' but
(I think) didn't make it into configure.ac. Now it is in both places.)
M configure.ac
M configure
- For John: Added in (c) 2011. :)
- Add to SNOW_LEOPARD_OR_LATER the check for Lion.
M include/sci_defs/osx_testdefs.h.in
M Core/Grid/Variables/ReductionVariable_special.cc
M Core/Disclosure/TypeUtils.cc
M Core/Util/Endian.cc
M StandAlone/tools/puda/varsummary.cc
- Use SNOW_LEOPARD_OR_LATER flag...
2 lines of code changed in 2 files:
Update copyright year.
8 lines of code changed in 16 files:
Eliminate "using namespace std" and similar from header files. That is a big no-no!
34 lines of code changed in 4 files:
This checkin may break something if I was not able to build it. I will clean it up if that happens...
- removing "using" standard namespace stuff from headers. This is really bad practice, and anyone doing it should be flogged. Opening up a namespace in a header file defeats the purpose of namespaces because all downstream inclusions of the header file will also result in that namespace opening up. This can lead to inadvertent name clashes, etc. Only open a namespace in an implementation file!
- put the SymmMatrix3 implementation in the Uintah namespace to be consistent with its declaration.
1 lines of code changed in 2 files: