]> git.lyx.org Git - features.git/commitdiff
Different compiler, new warning. Sorry for the noise.
authorAngus Leeming <leeming@lyx.org>
Tue, 3 Sep 2002 16:22:31 +0000 (16:22 +0000)
committerAngus Leeming <leeming@lyx.org>
Tue, 3 Sep 2002 16:22:31 +0000 (16:22 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5198 a592a061-630c-0410-9148-cb99ea01b6c8

src/graphics/PreviewLoader.C

index ccb825af73a26967f1d6a5beb3447ada99e11cb9..57d3749e05fe62ecedab9c7819e2f3cfb122fa05 100644 (file)
@@ -89,7 +89,7 @@ private:
 // Given a base-10 number return the number of digits needed to store it.
 // Eg 2 requires 1 digit, 22 requires 2 digits and 999 requires 3 digits.
 // Note that AndrĂ© suggests just returning '12' here...
-int ndigits(int num)
+    int ndigits(int /*num*/)
 {
        //return 1 + int(std::log10(double(num)));
        return 5;