diff options
Diffstat (limited to 'vigra/vigra1.4.0-enumwarn.patch')
-rw-r--r-- | vigra/vigra1.4.0-enumwarn.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/vigra/vigra1.4.0-enumwarn.patch b/vigra/vigra1.4.0-enumwarn.patch new file mode 100644 index 000000000000..8ea1ed7890da --- /dev/null +++ b/vigra/vigra1.4.0-enumwarn.patch @@ -0,0 +1,13 @@ +--- misc/vigra1.4.0/include/vigra/sized_int.hxx 2012-03-28 13:36:02.743956393 +0200 ++++ misc/build/vigra1.4.0/include/vigra/sized_int.hxx 2012-03-28 13:35:44.956057143 +0200 +@@ -80,8 +80,8 @@ + template<class LIST> + struct SelectBiggestIntegerType + { +- enum { cursize = LIST::size, +- nextsize = SelectBiggestIntegerType<typename LIST::next>::size, ++ enum { cursize = static_cast< int >(LIST::size), ++ nextsize = static_cast< int >(SelectBiggestIntegerType<typename LIST::next>::size), + size = (cursize < nextsize) ? nextsize : cursize }; + typedef typename + IfBool<(cursize < nextsize), |