Changed so that "dimension" is not declared, to avoid compiler warning.

This commit is contained in:
birm
2014-01-28 19:24:30 +00:00
parent 395f36142d
commit 71fbc0e02d
+4 -1
View File
@@ -137,7 +137,10 @@ class ExampleKernel
* @param dimension the dimension of the space.
* @return the normalization constant.
*/
static double Normalizer(size_t dimension=1) { return 0; }
static double Normalizer() { return 0; }
// Modified to remove unused variable "dimension"
//static double Normalizer(size_t dimension=1) { return 0; }
};