Skip to content
Snippets Groups Projects
Commit 398d913a authored by Julien Michel's avatar Julien Michel
Browse files

correction erreurs de compilations sous visual

parent e7e90e02
No related branches found
No related tags found
No related merge requests found
......@@ -267,8 +267,8 @@ class GroupedRBFKernelFunctor : public GenericKernelFunctorBase
virtual double operator()(const svm_node *x, const svm_node *y, const svm_parameter& param)const
{
const char *parameters = param.custom;
char twoPoints[] = ":";
char *position = strpbrk (parameters, twoPoints);
const char * twoPoints = ":";
const char * position = strpbrk (parameters, twoPoints);
int twoPointsPosition = 0;
double total = 0.;
double value = 0.;
......@@ -443,9 +443,9 @@ class GroupingAdaptiveKernelFunctor : public GenericKernelFunctorBase
virtual double operator()(const svm_node *x, const svm_node *y, const svm_parameter& param)const
{
const char *parameters = param.custom;
char twoPoints[] = ":";
char *position = strpbrk (parameters, twoPoints);
const char * parameters = param.custom;
const char * twoPoints = ":";
const char * position = strpbrk (parameters, twoPoints);
int twoPointsPosition = 0;
double total = 0.;
double value = 0.;
......
......@@ -46,7 +46,7 @@ ProfileDerivativeToMultiScaleCharacteristicsFilter<TInputImage,TOutputImage,TLab
{
return 0;
}
return static_cast<const LabeledImageType * >
return static_cast<LabeledImageType * >
(this->itk::ProcessObject::GetOutput(1) );
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment