|
From: <kin...@us...> - 2025-08-30 02:16:13
|
Revision: 7339
http://sourceforge.net/p/teem/code/7339
Author: kindlmann
Date: 2025-08-30 02:16:11 +0000 (Sat, 30 Aug 2025)
Log Message:
-----------
fixing warning about set but not used variable
Modified Paths:
--------------
teem/trunk/src/gage/test/aalias.c
Modified: teem/trunk/src/gage/test/aalias.c
===================================================================
--- teem/trunk/src/gage/test/aalias.c 2025-08-30 01:39:30 UTC (rev 7338)
+++ teem/trunk/src/gage/test/aalias.c 2025-08-30 02:16:11 UTC (rev 7339)
@@ -1,6 +1,6 @@
/*
Teem: Tools to process and visualize scientific data and images
- Copyright (C) 2009--2023 University of Chicago
+ Copyright (C) 2009--2025 University of Chicago
Copyright (C) 2005--2008 Gordon Kindlmann
Copyright (C) 1998--2004 University of Utah
@@ -41,7 +41,7 @@
gageContext *ctx;
gagePerVolume *pvl;
double dt, *dist, *mask, *update, thresh, eps, rmsMin;
- const double *valu, *gmag, *mcrv;
+ const double /* *valu, */ *gmag, *mcrv;
me = argv[0];
mop = airMopNew();
@@ -112,7 +112,7 @@
fprintf(stderr, "%s: trouble:\n%s\n", me, err);
airMopError(mop); return 1;
}
- valu = gageAnswerPointer(ctx, pvl, gageSclValue);
+ /* valu = gageAnswerPointer(ctx, pvl, gageSclValue); */
gmag = gageAnswerPointer(ctx, pvl, gageSclGradMag);
mcrv = gageAnswerPointer(ctx, pvl, gageSclMeanCurv);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|