cgal/iostream
Laurent Rineau 62a502d807 Silent a clang warning
The warning was:
[...]/CGAL-4.1-Ic-78/include/CGAL/IO/io.h:272:5: warning: variable 'g' is used uninitialized whenever switch default is taken [-Wsometimes-uninitialized]
    default:
    ^~~~~~~
[...]/CGAL-4.1-Ic-78/include/CGAL/IO/io.h:277:19: note: uninitialized use occurs here
    col = Color(r,g,b);
                  ^
[...]/CGAL-4.1-Ic-78/include/CGAL/IO/io.h:262:13: note: initialize the variable 'g' to silence this warning
    int r, g, b;
            ^
             = 0
[...]/CGAL-4.1-Ic-78/include/CGAL/IO/io.h:272:5: warning: variable 'b' is used uninitialized whenever switch default is taken [-Wsometimes-uninitialized]
    default:
    ^~~~~~~
[...]/CGAL-4.1-Ic-78/include/CGAL/IO/io.h:277:21: note: uninitialized use occurs here
    col = Color(r,g,b);
                    ^
[...]/CGAL-4.1-Ic-78/include/CGAL/IO/io.h:262:16: note: initialize the variable 'b' to silence this warning
    int r, g, b;
               ^
                = 0
[...]/CGAL-4.1-Ic-78/include/CGAL/IO/io.h:272:5: warning: variable 'r' is used uninitialized whenever switch default is taken [-Wsometimes-uninitialized]
    default:
    ^~~~~~~
[...]/CGAL-4.1-Ic-78/include/CGAL/IO/io.h:277:17: note: uninitialized use occurs here
    col = Color(r,g,b);
                ^
[...]/CGAL-4.1-Ic-78/include/CGAL/IO/io.h:262:10: note: initialize the variable 'r' to silence this warning
    int r, g, b;
         ^
          = 0
3 warnings generated.
2012-06-15 08:57:41 +00:00
..
doc_tex Bug fix in Color manual 2012-03-30 12:48:16 +00:00
include/CGAL/IO Silent a clang warning 2012-06-15 08:57:41 +00:00
package_info/iostream Add license files, per package 2012-01-16 15:54:22 +00:00
src/CGAL change LGPLv2 -> LGPLv3 2011-10-10 13:48:25 +00:00
test/iostream Turn QPL into LGPLv3+ 2012-01-13 16:33:35 +00:00