Commits

Bob Garwood authored 86fdef6e1fb
RowTransformer.h has an unused variable that I missed cleaning up at the previous commit

code/alma/ASDM/RowTransformer.h

Modified
25 25 *
26 26 */
27 27
28 28 namespace asdm {
29 29 template<typename RowClass>
30 30
31 31 class RowTransformer {
32 32 public:
33 33 // By default the transform method does nothing
34 34 // The specialization will have the possibility to define a specific transformation.
35 - void transform (RowClass * rowPtr) {
35 + void transform (RowClass * /* rowPtr */) {
36 36 ;
37 37 }
38 38 };
39 39 }; // end namespace asdm.
40 40 #endif
41 41

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut