summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPeter Moulder <peter.moulder@monash.edu>2008-06-05 06:33:41 +0000
committerpjrm <pjrm@users.sourceforge.net>2008-06-05 06:33:41 +0000
commit2b707d8ae94f0838962d845a7b12d6b9fd42c432 (patch)
treead67ca3a9aa23609d48a09c63a68cb846038ce11 /src
parenta couple of trivial %d -> %u changes. (diff)
downloadinkscape-2b707d8ae94f0838962d845a7b12d6b9fd42c432.tar.gz
inkscape-2b707d8ae94f0838962d845a7b12d6b9fd42c432.zip
address a warning
(bzr r5813)
Diffstat (limited to 'src')
-rw-r--r--src/mod360-test.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mod360-test.h b/src/mod360-test.h
index 55ed59f32..79627571f 100644
--- a/src/mod360-test.h
+++ b/src/mod360-test.h
@@ -12,7 +12,7 @@
class Mod360Test : public CxxTest::TestSuite
{
public:
- static double const inf() { return INFINITY; }
+ static double inf() { return INFINITY; }
static double nan() { return ((double)INFINITY) - ((double)INFINITY); }
void testMod360()