Skip to content

Commit

Permalink
this is the only way to get all the VS2010 warnings to shtop - they w…
Browse files Browse the repository at this point in the history
…on't turn off locally within our own sources
  • Loading branch information
mpgerlek authored and hobu committed Mar 26, 2012
1 parent b586d04 commit f5e50ff
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
6 changes: 5 additions & 1 deletion boost/boost/concept_check.hpp
Expand Up @@ -343,7 +343,11 @@ namespace pdalboost{} namespace boost = pdalboost; namespace pdalboost{
// in class without a constructor [-Wuninitialized])
UnaryFunction();
#endif

#if defined(BOOST_MSVC) /* mpg */
// not implemented
UnaryFunction();
UnaryFunction& operator=(const UnaryFunction&);
#endif
Func f;
Arg arg;
};
Expand Down
5 changes: 5 additions & 0 deletions boost/boost/parameter/aux_/default.hpp
Expand Up @@ -20,6 +20,11 @@ struct default_
{}

Value& value;

#if defined(BOOST_MSVC) /* mpg */
// not implemented
default_& operator=(const default_&);
#endif
};

//
Expand Down

0 comments on commit f5e50ff

Please sign in to comment.