From c417559a7dd8a7f29b4d0166ffdb2ff335380140 Mon Sep 17 00:00:00 2001 From: James E McClure Date: Fri, 29 Mar 2019 07:28:24 -0400 Subject: [PATCH] explicit signed char in morph header --- analysis/morphology.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/analysis/morphology.h b/analysis/morphology.h index 4692475d..f69af5f2 100644 --- a/analysis/morphology.h +++ b/analysis/morphology.h @@ -3,6 +3,6 @@ #include "common/Domain.h" #include "analysis/runAnalysis.h" -double MorphOpen(DoubleArray &SignDist, char *id, std::shared_ptr Dm, double VoidFraction); -double MorphDrain(DoubleArray &SignDist, char *id, std::shared_ptr Dm, double VoidFraction); -double MorphGrow(DoubleArray &BoundaryDist, DoubleArray &Dist, Array &id, std::shared_ptr Dm, double TargetVol); \ No newline at end of file +double MorphOpen(DoubleArray &SignDist, signed char *id, std::shared_ptr Dm, double VoidFraction); +double MorphDrain(DoubleArray &SignDist, signed char *id, std::shared_ptr Dm, double VoidFraction); +double MorphGrow(DoubleArray &BoundaryDist, DoubleArray &Dist, Array &id, std::shared_ptr Dm, double TargetVol);