Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r67422 - trunk/boost
From: neil_at_[hidden]
Date: 2010-12-22 19:43:11


Author: neilgroves
Date: 2010-12-22 19:43:10 EST (Wed, 22 Dec 2010)
New Revision: 67422
URL: http://svn.boost.org/trac/boost/changeset/67422

Log:
Eliminate warnings from BinaryFunction, UnaryPredicate, BinaryPredicate concept check classes.
Text files modified:
   trunk/boost/concept_check.hpp | 139 +++++++++++++++++++++++++--------------
   1 files changed, 87 insertions(+), 52 deletions(-)

Modified: trunk/boost/concept_check.hpp
==============================================================================
--- trunk/boost/concept_check.hpp (original)
+++ trunk/boost/concept_check.hpp 2010-12-22 19:43:10 EST (Wed, 22 Dec 2010)
@@ -38,14 +38,14 @@
   //
   // Backward compatibility
   //
-
+
   template <class Model>
   inline void function_requires(Model* = 0)
   {
       BOOST_CONCEPT_ASSERT((Model));
- }
+ }
   template <class T> inline void ignore_unused_variable_warning(T const&) {}
-
+
 # define BOOST_CLASS_REQUIRE(type_var, ns, concept) \
     BOOST_CONCEPT_ASSERT((ns::concept<type_var>))
 
@@ -58,14 +58,14 @@
 # define BOOST_CLASS_REQUIRE4(tv1, tv2, tv3, tv4, ns, concept) \
     BOOST_CONCEPT_ASSERT((ns::concept<tv1,tv2,tv3,tv4>))
 
-
+
   //
   // Begin concept definitions
   //
   BOOST_concept(Integer, (T))
   {
       BOOST_CONCEPT_USAGE(Integer)
- {
+ {
             x.error_type_must_be_an_integer_type();
         }
    private:
@@ -90,7 +90,7 @@
 # endif
 
   BOOST_concept(SignedInteger,(T)) {
- BOOST_CONCEPT_USAGE(SignedInteger) {
+ BOOST_CONCEPT_USAGE(SignedInteger) {
       x.error_type_must_be_a_signed_integer_type();
     }
    private:
@@ -104,16 +104,16 @@
   template <> struct SignedInteger< ::boost::long_long_type> {};
 # elif defined(BOOST_HAS_MS_INT64)
   template <> struct SignedInteger<__int64> {};
-# endif
+# endif
 
   BOOST_concept(UnsignedInteger,(T)) {
- BOOST_CONCEPT_USAGE(UnsignedInteger) {
+ BOOST_CONCEPT_USAGE(UnsignedInteger) {
       x.error_type_must_be_an_unsigned_integer_type();
     }
    private:
     T x;
   };
-
+
   template <> struct UnsignedInteger<unsigned char> {};
   template <> struct UnsignedInteger<unsigned short> {};
   template <> struct UnsignedInteger<unsigned int> {};
@@ -155,7 +155,7 @@
     TT a;
   };
 
-
+
   BOOST_concept(CopyConstructible,(TT))
   {
     BOOST_CONCEPT_USAGE(CopyConstructible) {
@@ -300,7 +300,7 @@
   BOOST_concept(Generator,(Func)(Return))
   {
       BOOST_CONCEPT_USAGE(Generator) { test(is_void<Return>()); }
-
+
    private:
       void test(boost::mpl::false_)
       {
@@ -313,22 +313,22 @@
       {
           f();
       }
-
+
       Func f;
   };
 
   BOOST_concept(UnaryFunction,(Func)(Return)(Arg))
   {
       BOOST_CONCEPT_USAGE(UnaryFunction) { test(is_void<Return>()); }
-
+
    private:
       void test(boost::mpl::false_)
       {
           f(arg); // "priming the pump" this way keeps msvc6 happy (ICE)
           Return r = f(arg);
- ignore_unused_variable_warning(r);
+ ignore_unused_variable_warning(r);
       }
-
+
       void test(boost::mpl::true_)
       {
           f(arg);
@@ -357,12 +357,21 @@
           Return r = f(first, second); // require operator()
           (void)r;
       }
-
+
       void test(boost::mpl::true_)
       {
           f(first,second);
       }
-
+
+#if (BOOST_WORKAROUND(__GNUC__, BOOST_TESTED_AT(4) \
+ && BOOST_WORKAROUND(__GNUC__, > 3)))
+ // Declare a dummy constructor to make gcc happy.
+ // It seems the compiler can not generate a sensible constructor when this is instantiated with a refence type.
+ // (warning: non-static reference "const double& boost::BinaryFunction<YourClassHere>::arg"
+ // in class without a constructor [-Wuninitialized])
+ BinaryFunction();
+#endif
+
       Func f;
       First first;
       Second second;
@@ -374,6 +383,15 @@
       require_boolean_expr(f(arg)); // require operator() returning bool
     }
    private:
+#if (BOOST_WORKAROUND(__GNUC__, BOOST_TESTED_AT(4) \
+ && BOOST_WORKAROUND(__GNUC__, > 3)))
+ // Declare a dummy constructor to make gcc happy.
+ // It seems the compiler can not generate a sensible constructor when this is instantiated with a refence type.
+ // (warning: non-static reference "const double& boost::UnaryPredicate<YourClassHere>::arg"
+ // in class without a constructor [-Wuninitialized])
+ UnaryPredicate();
+#endif
+
     Func f;
     Arg arg;
   };
@@ -384,6 +402,14 @@
       require_boolean_expr(f(a, b)); // require operator() returning bool
     }
    private:
+#if (BOOST_WORKAROUND(__GNUC__, BOOST_TESTED_AT(4) \
+ && BOOST_WORKAROUND(__GNUC__, > 3)))
+ // Declare a dummy constructor to make gcc happy.
+ // It seems the compiler can not generate a sensible constructor when this is instantiated with a refence type.
+ // (warning: non-static reference "const double& boost::BinaryPredicate<YourClassHere>::arg"
+ // in class without a constructor [-Wuninitialized])
+ BinaryPredicate();
+#endif
     Func f;
     First a;
     Second b;
@@ -393,7 +419,7 @@
   BOOST_concept(Const_BinaryPredicate,(Func)(First)(Second))
     : BinaryPredicate<Func, First, Second>
   {
- BOOST_CONCEPT_USAGE(Const_BinaryPredicate) {
+ BOOST_CONCEPT_USAGE(Const_BinaryPredicate) {
       const_constraints(f);
     }
    private:
@@ -401,6 +427,15 @@
       // operator() must be a const member function
       require_boolean_expr(fun(a, b));
     }
+#if (BOOST_WORKAROUND(__GNUC__, BOOST_TESTED_AT(4) \
+ && BOOST_WORKAROUND(__GNUC__, > 3)))
+ // Declare a dummy constructor to make gcc happy.
+ // It seems the compiler can not generate a sensible constructor when this is instantiated with a refence type.
+ // (warning: non-static reference "const double& boost::Const_BinaryPredicate<YourClassHere>::arg"
+ // in class without a constructor [-Wuninitialized])
+ Const_BinaryPredicate();
+#endif
+
     Func f;
     First a;
     Second b;
@@ -410,7 +445,7 @@
     : Generator<Func, typename Func::result_type>
   {
       typedef typename Func::result_type result_type;
-
+
       BOOST_CONCEPT_USAGE(AdaptableGenerator)
       {
           BOOST_CONCEPT_ASSERT((Convertible<result_type, Return>));
@@ -441,7 +476,7 @@
       typedef typename Func::first_argument_type first_argument_type;
       typedef typename Func::second_argument_type second_argument_type;
       typedef typename Func::result_type result_type;
-
+
       ~AdaptableBinaryFunction()
       {
           BOOST_CONCEPT_ASSERT((Convertible<result_type, Return>));
@@ -479,7 +514,7 @@
       {
         BOOST_CONCEPT_ASSERT((SignedInteger<difference_type>));
         BOOST_CONCEPT_ASSERT((Convertible<iterator_category, std::input_iterator_tag>));
-
+
         TT j(i);
         (void)*i; // require dereference operator
         ++j; // require preincrement operator
@@ -493,7 +528,7 @@
     : Assignable<TT>
   {
     BOOST_CONCEPT_USAGE(OutputIterator) {
-
+
       ++i; // require preincrement operator
       i++; // require postincrement operator
       *i++ = t; // require postincrement and assignment
@@ -512,11 +547,11 @@
               BOOST_DEDUCED_TYPENAME ForwardIterator::iterator_category
             , std::forward_iterator_tag
>));
-
+
           typename InputIterator<TT>::reference r = *i;
           ignore_unused_variable_warning(r);
       }
-
+
    private:
       TT i;
   };
@@ -578,7 +613,7 @@
           n = i - j; // require difference operator
           (void)i[n]; // require element access operator
       }
-
+
    private:
     TT a, b;
     TT i, j;
@@ -616,7 +651,7 @@
           BOOST_CONCEPT_ASSERT((InputIterator<const_iterator>));
           const_constraints(c);
       }
-
+
    private:
       void const_constraints(const C& cc) {
           i = cc.begin();
@@ -637,19 +672,19 @@
       typedef typename C::reference reference;
       typedef typename C::iterator iterator;
       typedef typename C::pointer pointer;
-
+
       BOOST_CONCEPT_USAGE(Mutable_Container)
       {
           BOOST_CONCEPT_ASSERT((
                Assignable<typename Mutable_Container::value_type>));
-
+
           BOOST_CONCEPT_ASSERT((InputIterator<iterator>));
-
+
           i = c.begin();
           i = c.end();
           c.swap(c2);
       }
-
+
    private:
       iterator i;
       C c, c2;
@@ -665,7 +700,7 @@
                     typename ForwardContainer::const_iterator
>));
       }
- };
+ };
 
   BOOST_concept(Mutable_ForwardContainer,(C))
     : ForwardContainer<C>
@@ -678,7 +713,7 @@
                    typename Mutable_ForwardContainer::iterator
>));
       }
- };
+ };
 
   BOOST_concept(ReversibleContainer,(C))
     : ForwardContainer<C>
@@ -692,9 +727,9 @@
           BOOST_CONCEPT_ASSERT((
               BidirectionalIterator<
                   typename ReversibleContainer::const_iterator>));
-
+
           BOOST_CONCEPT_ASSERT((BidirectionalIterator<const_reverse_iterator>));
-
+
           const_constraints(c);
       }
    private:
@@ -711,17 +746,17 @@
     , ReversibleContainer<C>
   {
       typedef typename C::reverse_iterator reverse_iterator;
-
+
       BOOST_CONCEPT_USAGE(Mutable_ReversibleContainer)
       {
           typedef typename Mutable_ForwardContainer<C>::iterator iterator;
           BOOST_CONCEPT_ASSERT((Mutable_BidirectionalIterator<iterator>));
           BOOST_CONCEPT_ASSERT((Mutable_BidirectionalIterator<reverse_iterator>));
-
+
           reverse_iterator i = c.rbegin();
           i = c.rend();
       }
- private:
+ private:
       C c;
   };
 
@@ -737,7 +772,7 @@
               RandomAccessIterator<
                   typename RandomAccessContainer::const_iterator
>));
-
+
           const_constraints(c);
       }
    private:
@@ -746,7 +781,7 @@
           const_reference r = cc[n];
           ignore_unused_variable_warning(r);
       }
-
+
       C c;
       size_type n;
   };
@@ -762,11 +797,11 @@
       {
           BOOST_CONCEPT_ASSERT((Mutable_RandomAccessIterator<typename self::iterator>));
           BOOST_CONCEPT_ASSERT((Mutable_RandomAccessIterator<typename self::reverse_iterator>));
-
+
           typename self::reference r = c[i];
           ignore_unused_variable_warning(r);
       }
-
+
    private:
       typename Mutable_ReversibleContainer<C>::size_type i;
       C c;
@@ -782,7 +817,7 @@
   {
       BOOST_CONCEPT_USAGE(Sequence)
       {
- S
+ S
               c(n),
               c2(n, t),
               c3(first, last);
@@ -807,7 +842,7 @@
           typename Sequence::const_reference r = c.front();
           ignore_unused_variable_warning(r);
       }
-
+
       typename S::value_type t;
       typename S::size_type n;
       typename S::value_type* first, *last;
@@ -866,11 +901,11 @@
           c.erase(r.first, r.second);
           const_constraints(c);
           BOOST_CONCEPT_ASSERT((BinaryPredicate<key_compare,key_type,key_type>));
-
+
           typedef typename AssociativeContainer::value_type value_type_;
           BOOST_CONCEPT_ASSERT((BinaryPredicate<value_compare,value_type_,value_type_>));
       }
-
+
       // Redundant with the base concept, but it helps below.
       typedef typename C::const_iterator const_iterator;
    private:
@@ -896,7 +931,7 @@
       BOOST_CONCEPT_USAGE(UniqueAssociativeContainer)
       {
           C c(first, last);
-
+
           pos_flag = c.insert(t);
           c.insert(first, last);
 
@@ -914,7 +949,7 @@
       BOOST_CONCEPT_USAGE(MultipleAssociativeContainer)
       {
           C c(first, last);
-
+
           pos = c.insert(t);
           c.insert(first, last);
 
@@ -957,7 +992,7 @@
   {
       BOOST_CONCEPT_USAGE(SortedAssociativeContainer)
       {
- C
+ C
               c(kc),
               c2(first, last),
               c3(first, last, kc);
@@ -965,15 +1000,15 @@
           p = c.upper_bound(k);
           p = c.lower_bound(k);
           r = c.equal_range(k);
-
+
           c.insert(p, t);
-
+
           ignore_unused_variable_warning(c);
           ignore_unused_variable_warning(c2);
           ignore_unused_variable_warning(c3);
           const_constraints(c);
       }
-
+
       void const_constraints(const C& c)
       {
           kc = c.key_comp();
@@ -983,7 +1018,7 @@
           cp = c.lower_bound(k);
           cr = c.equal_range(k);
       }
-
+
    private:
       typename C::key_compare kc;
       typename C::value_compare vc;


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk